Announcement

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

    grid group title doesn't show with ListGridField.autoFitWidth: true

    SmartClient Version: SNAPSHOT_v11.1d_2017-03-03/Enterprise Development Only (built 2017-03-03)

    Chrome on OSX

    Hello, please modify the dynamicGrouping sample like this (I've just added autoFitWidth: true to the first column):

    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:522, height:224,
        alternateRecordStyles:true,
        dataSource: countryDS,
        // display a subset of fields from the datasource
        fields:[
            {name:"countryName", autoFitWidth: true},
            {name:"government"},
            {name:"continent"},
            {name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false}
        ],
        groupStartOpen:"all",
        groupByField: 'continent',
        autoFetchData: true
    })
    You'll see that the group title doesn't show, unless you resize some column.

    #2
    Thanks for the notification and the test case.
    We've made a change to address this. Please try the next nightly build, dated March 8 or above, on the 11.1d branch

    Regards
    Isomorphic Software

    Comment


      #3
      SmartClient Version: SNAPSHOT_v11.1d_2017-03-09/Enterprise Development Only (built 2017-03-09)


      I can confirm it's fixed, thank you very much.

      Comment

      Working...
      X