Announcement

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

    Focus in filter with Frozen columns not working properly

    Setting the focus in a filter textbox does not work properly when there are frozen columns and the grid is not big enough to display all columns.
    The last filterField gets the focus, instead of the one that was clicked.
    This only happens the first time when clicking in a filterfield.

    Try to code below in this examle: http://www.smartclient.com/index.jsp#sort
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:200, height:224, alternateRecordStyles:true,
        data: countryData,
    showFilterEditor: true, 
        fields:[
            {name:"countryCode", frozen:true,  title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
            {name:"countryName", title:"Country", frozen:true},
            {name:"population", title:"Population", formatCellValue:"isc.Format.toUSString(value)"},
            {name:"area", title:"Area (kmē)", formatCellValue:"isc.Format.toUSString(value)"}
        ],
        // initial sort on Population, high-to-low
        sortFieldNum: 2,
        sortDirection: "descending"
    })
    Last edited by Diether; 26 May 2010, 01:00.

    #2
    Nobody has a fix or workaround for this bug?
    It's not a major issue, but still pretty annoying...

    Any chance that it is somehow related to a patch that was created for 6.5.1: http://forums.smartclient.com/showthread.php?t=6516 ?

    Comment


      #3
      *bump*

      Sorry to bump this thread again.
      But can somebody at least confirm this is a bug and that it'll be fixed in a patch/next release?

      Comment

      Working...
      X