Tab support for bottomPanelsDetailSmall

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rabii
    Active Community Member
    • Jun 2016
    • 1396

    #1

    Tab support for bottomPanelsDetailSmall

    It would be nice to have the tab feature support bottomPanelsDetailSmall

    Thanks
    Rabii
    EspoCRM Custom Development

    🔗 Portfolio & Builds
  • yuri
    EspoCRM product developer
    • Mar 2014
    • 9809

    #2
    I don't understand. It's not available in the layout manager. Did you try making it available and it worked but without tabs? I believe it should not work at all, not just tabs.

    Comment

    • rabii
      Active Community Member
      • Jun 2016
      • 1396

      #3
      Yes it is not available on the layout manager but it could be added via code and it will render on the detailSmall view below is an example i used in a project

      PHP Code:
      {
          "contacts": {
              "sticked": false,
              "index": 0
          },
          "subsidiaries": {
              "dynamicLogicVisible": {
                  "conditionGroup": [
                      {
                          "type": "or",
                          "value": [
                              {
                                  "type": "has",
                                  "attribute": "accountType",
                                  "value": "Client"
                              },
                              {
                                  "type": "isNotEmpty",
                                  "attribute": "id"
                              }
                          ]
                      }
                  ]
              },
              "sticked": false,
              "index": 1
          },
          "campaignLogRecords": {
              "sticked": false,
              "index": 2
          },
          "stream": {
              "index": 3,
              "sticked": false
          }
      }​ 
      

      Was there any reason why this was not added to the layout manager by default ?

      I have tried coding tabs but didn't work
      Rabii
      EspoCRM Custom Development

      🔗 Portfolio & Builds

      Comment


      • Kharg
        Kharg commented
        Editing a comment
        Is this why you were asking about the view handler for the edit view the other day? ?

      • rabii
        rabii commented
        Editing a comment
        No that was different. That was about customising core files which managed to do thanks to Yuri who shared how to do it
        This is just tinkering around for a project of a client who wants data access everywhere possible.

      • item
        item commented
        Editing a comment
        +1 Nice to have Tab (if i understand)
        actually i use "..." hide by default other panel
    Working...