Card Style & Hide Label

{
  "pageType": "crud",
  "pageTitle": "Apps",
  "pageDesc": "List of Applications Created or Developed by you",
  "pageModuleTitle": "Apps Management",
  "crudOpt": {
    "endpointName": "https://fake-api/app?length=200",
    "gridTheme": "grid_card",
    "gridSizeLg": "2",
    "gridSizeMd": "6",
    "gridSizeSm": "12",
    "data": {
      "dynamicColumns": [
        {
          "fieldName": "name",
          "type": "avatar_title",
          "avatarImgField": "logo.appLogo",
          "avatarTitleField": "name",
          "avatarDescField": "code",
          "avatarClassName": "avatar-square-no-shadow bg-transparent",
          "avatarImgStyle": {
            "height": "60px",
            "width": "60px",
            "backgroundSize": "70%",
            "backgroundRepeat": "no-repeat",
            "backgroundPosition": "center center",
            "boxShadow": "none"
          }
        },
        {
          "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