I have the following code below (countryData is from SC Feature Explorer). Ignore the multiple background and country name fields. Scroll horizontally all the way to the end. Double click on the last countryName column to enter edit mode. Notice that it jumps back to the first column of that row.
My question is, is there any way to have the listgrid stay on the row column that I have double clicked on?
My question is, is there any way to have the listgrid stay on the row column that I have double clicked on?
Code:
isc.ListGrid.create({ ID: "countryList", width:400, height:"100%", alternateRecordStyles:true,canEdit: true, data: countryData, fields:[ {name:"countryName", title:"Country", width:120}, {name:"background", title:"Background"}, {name:"countryName", title:"Country", width:120}, {name:"background", title:"Background"}, {name:"countryName", title:"Country", width:120}, {name:"background", title:"Background"}, {name:"countryName", title:"Country", width:120}, {name:"background", title:"Background"}, {name:"countryName", title:"Country", width:120}, {name:"background", title:"Background"}, {name:"countryName", title:"Country", width:120}, {name:"background", title:"Background"}, {name:"countryCode", title:"Flag", align:"center", width:50, type:"image", imageSize:24, imageURLPrefix:"flags/24/", imageURLSuffix:".png"} ], wrapCells: true })
Comment