Hi there,
we noticed a weird behaviour if tabbing through a ListGrid field with editor type date or time.
If one of these fields is the first editable of a column, sometimes the cursor stuck in this field.
This behaviour can be reproduced with your example:
https://www.smartclient.com/smartcli...sizeIncrease=2
The only change is set the date field as first field:
If you now tabbing through the rows the cursor somtimes stuck in the date field.
Best regards
we noticed a weird behaviour if tabbing through a ListGrid field with editor type date or time.
If one of these fields is the first editable of a column, sometimes the cursor stuck in this field.
This behaviour can be reproduced with your example:
https://www.smartclient.com/smartcli...sizeIncrease=2
The only change is set the date field as first field:
Code:
isc.ListGrid.create({ ID: "countryList", width:550, height:224, alternateRecordStyles:true, // use server-side dataSource so edits are retained across page transitions dataSource: countryDS, // display a subset of fields from the datasource fields:[ {name:"independence"}, {name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false}, {name:"countryName"}, {name:"continent"}, {name:"member_g8"}, {name:"population"}, ], autoFetchData: true, canEdit: true, editEvent: "click" })
Best regards
Comment