Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Set Height of Nested component in listgrid

    SmartClient Version: v11.0p_2017-02-11/PowerEdition Deployment (built 2017-02-11)

    I have a listgrid and on expansion i have a tabset with two tabs. Each tab contains a listgrid. I want the tabset to take the max height based on content in the tabs and no scrollbar should appear in the tabset.
    What should i do?

    #2
    We added the following properties on our TabSet control to achieve it sizing correctly within an expansion component:
    Code:
    "overflow": "visible"
    ,"paneContainerProperties": {
        "overflow": "visible"
    }

    Comment

    Working...
    X