Announcement

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

    ListGrid gap in last column sort with even leaveScrollbarGap set to false

    Hi,

    I am using Smart Client v8.3p_2013-03-13/Pro Deployment. In a ListGrid, I have set leaveScrollbarGap to false. I see a funky gap in the last column after the sort arrow when I hover over it, probably there for sorting the whole row. See screenshot attached with this reproduced in the live sample http://www.smartclient.com/docs/8.3/a/system/reference/SmartClient_Explorer.html#listsLocalData.

    Is there a way to get rid of this so behavior so the last column works like the other columns?

    Thanks.
    Attached Files

    #2
    We checked the example, and it doesn't look like you described. Also, you need to test the latest patched build.

    Comment


      #3
      Sorry, I forgot to mention that I changed two things in that example in order to reproduce what I am seeing. I increased the height of the ListGrid so that a scrollbar doesn't appear and set leaveScrollbarGap to false. Below is the modified code for the sample. I also tried this on the 9.0 sample at http://smartclient.com/#listsLocalData.

      Code:
      isc.ListGrid.create({
          ID: "countryList",
      leaveScrollbarGap: false,
          width:500, height:600, alternateRecordStyles:true,
          fields:[
              {name:"countryCode", title:"Code"},
              {name:"countryName", title:"Country"},
              {name:"capital", title:"Capital"}
          ],
          data: countryData
      })

      Comment


        #4
        Still not seeing what you report in the screenshot (and that's not a 9.0 sample).

        Comment


          #5
          I downloaded the latest 8.3 version (5-22) and it is fixed there. We will upgrade. Thanks!

          Comment

          Working...
          X