Kanban Board

GridMate’s Kanban Board is designed to help users manage and visualize workflows by tracking progress and allowing quick updates directly within the page.

In this tutorial, we will create an app page for opportunity Kanban Board using GM - Kanban Board.

  1. From Setup, create an app page in the Lightning App Builder.

  2. From the components list, drag and drop the component GM - Kanban Board.

  3. The component is now ready for configuration in the Lightning App Builder.

  4. The property values can be configured to tailor the component to the needs of the end-user.

  5. To perform a quick configuration, populate required property values:

    • Custom Label : Opp Pipeline Board

    • Custom Icom : standard:opportunity

    • Object Name : Opportunity

    • Stage Field : StageName

    • Title Field : Name

    • Object Fields : CloseDate,ExpectedRevenue,Amount

    • Row Limit : 100

    • Enable Create Object : Checked

    • Enable Update Object : Checked

    • Enable Mass Update : Checked

    • Enable Delete Object : Checked

    • Enable Mass Delete : Checked

  6. Aggregate : { "Amount": "sum", "ExpectedRevenue": "sum" }

  7. actions : [{"label":"Update Stage","name":"Opportunity.Update_Stage"}]

Below is a step by step tutorial to configure the GM - Kanban Board.

The Kanban Board supports card coloring by providing the coloring configuration. Below is an example of card coloring.

[
    {
        "color": "#ffc9c9",
        "exp": {
            "Amount": {
                "operator": "<=",
                "value": 10000
            }
        }
    },
    {
        "color": "#D2FFBF",
        "exp": {
            "Amount": {
                "operator": ">",
                "value": 10000
            }
        }
    }
]

Mass/Record action can be configured based on requirement. We support custom actions and call flow.

Last updated

Was this helpful?