Announcement

Collapse
No announcement yet.

How can I disable custom filters

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How can I disable custom filters

    Hello, can someone please help me? How can I create custom filters exclusively for portal users? Secondly, how can I hide the current filter list for portal users?

  • #2


    Use accessDataList. See JSON schema. "isPortalOnly": true.

    Comment


    • #3


      "I used the following code:


      {
      "name": "renew",
      "style": "info",
      "isPortalOnly": false
      }


      However, the filter is still visible in the portal."​

      Comment


      • espcrm
        espcrm commented
        Editing a comment
        Shouldn't it be: isPortalOnly: true?

      • abidoss
        abidoss commented
        Editing a comment
        When I set it to 'true', the filter appeared for both the portal and the users."

    • #4
      it should be done as below

      PHP Code:
      {
      "name""renew",
      "style""info",
      "accessDataList": [
                     {
                          
      "isPortalOnly"true
                      
      }
       
      ]

      Rabii
      Web Dev | Freelancer

      Comment


      • espcrm
        espcrm commented
        Editing a comment
        Added to the unofficial wiki... been too long since I touch this
    Working...
    X