Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Cannot tab into ListGrid rows when filterButton is hidden

$
0
0
Not able to use Tab key to access table rows in a ListGrid when the visibility of the filterButton is set to hidden,

Problem can be reproduced on a slighty modified SmartClient Column Widths example on http://www.smartclient.com/#autofitColumnWidths using SmartClient Version: v9.1p_2015-01-08/Pro Deployment (built 2015-01-08) on Firefox 35 and Chrome 39.0 as follows:

Code:

isc.ListGrid.create({
    ID: "countryList",
    height:224, width:"100%", alternateRecordStyles:true,
    autoFitWidthApproach:"both",
    canTabToHeader: true,
    showFilterEditor: true,
    canSort:false,
    headerAutoFitEvent:"doubleClick",
    filterButtonProperties: {visibility:'hidden'},
    data: countryData,
    fields:[
        {name:"countryCode", title:"Flag Thumbnail", cellAlign:"center",
          autoFitWidth:true, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
        {name:"countryName", title:"Country", autoFitWidth:true },
        {name:"capital", title:"Capital"},
        {name:"continent", title:"Continent"}
    ]
})

Steps to reproduce:

1) Click on the filter editor of the last column (e.g. Continent)
2) Use tab key to navigate and the focus still stuck on the filter editor of the last column (e.g. Continent)

Clicking on a row in the ListGrid and use Shift+Tab key does move the focus to the filter editor of the last column but using Tab key does not move the focus back into the first table row


----------------
SmartClient Version: v9.1p_2015-01-08/Pro Deployment (built 2015-01-08)
Windows 7 Firefox 34.0.5, 35.0 and Chrome 39.0.2171.99 m

Viewing all articles
Browse latest Browse all 4756

Trending Articles