Grid Card

Grid Card Basic

{
  "pageType": "crud",
  "pageTitle": "Apps",
  "pageDesc": "List of Applications Created or Developed by you",
  "pageModuleTitle": "Apps Management",
  "crudOpt": {
    "endpointName": "https://fake-api/app",
    "gridTheme": "grid_card",
    "gridSizeLg": "3",
    "gridSizeMd": "6",
    "gridSizeSm": "12",
    "data": {
      "dynamicColumns": [
        {
          "fieldName": "name",
          "columnName": "Name"
        },
        {
          "columnName": "Type",
          "fieldName": "info.appType",
          "lookupValue": [
            {
              "value": "service",
              "label": "Api Service",
              "icon": "material:api",
              "class": "text-info"
            },
            {
              "value": "web",
              "label": "Web App",
              "icon": "material:web",
              "class": "text-warning"
            },
            {
              "value": "desktop",
              "label": "Desktop App",
              "icon": "material:desktop_windows",
              "class": "text-danger"
            },
            {
              "value": "mobile",
              "label": "Mobile App",
              "icon": "material:app_shortcut",
              "class": "text-success"
            }
          ]
        }
      ]
    }
  }
}

Last updated