Announcement

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

    ListGrid header misalignment issue with html5 doctype.

    Hi,

    We observe a misalignment issue for ListGrid header label: when the html5 doctype is set, the header label is shifted to the top if there's no enough width to display it.

    Please try the following standalone with <!DOCTYPE HTML> flag. The label for column "Country" is shifted to the top. Without the flag, the label is aligned with other columns. This issue can be reproduced on FF12, IE11 and Google Chrome with SmartClient_v83p_2014-01-24_PowerEdition and SmartClient_v91p_2014-09-16_PowerEdition.

    Thanks!

    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:500, height:224, top: 100, left: 50, alternateRecordStyles:true,
    	headerHeight:30, headerButtonProperties:{wrap:true},
        fields:[
            {name:"countryCode", title:"Flag",align:"center", type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
            {name:"countryName", title:"Country", width:40},
            {name:"capital", title:"Capital"},
            {name:"continent", title:"Continent"}
        ]
    })

    #2
    We've made a change to address this issue. Please try the next nightly build dated Oct 10

    Regards
    Isomorphic Software

    Comment


      #3
      Hi,

      It is fixed on SmartClient v9.1p_2014-10-10/PowerEdition but I can still reproduce the issue on SmartClient v8.3p_2014-10-14/PowerEdition.

      Is is fixable on v8.3p? Some of our branches are still using 8.3 and we are not able to upgrade to v9.1.

      Thanks!

      Comment


        #4
        We had to tweak the fix a little but we've ported it back to 8.3 now. Please try the next nightly build on that branch (Oct 17 or above) and let us know if it doesn't resolve your issues

        Regards
        Isomorphic Software

        Comment


          #5
          Thanks! It works fine now on 8.3.

          Comment

          Working...
          X