Hi,
I have a ListGrid with only records in "read only" , but I reading on forum and I have add this properties in my ListGrid for select text in cell.
The problem is that I can select text in Chrome but not in IE11.
In particular I have see this html code in IE :
if I change "unselectable" from "on" to "off " i can select text in cell.
There is a propertie to add in my ListGrid for solving this problem?
SmartClient version 10.0-p20150415
Thank all
Peppe
I have a ListGrid with only records in "read only" , but I reading on forum and I have add this properties in my ListGrid for select text in cell.
Code:
isc.ListGrid.create({ ID: "myListGrid", width:500, height:224, alternateRecordStyles:true, data: data, fields:[ { name:"code", title:"code", type:"image", imageURLPrefix:"${img_path}", imageURLSuffix:".png", align:"center", width: "10%" }, { name:"description", title:"description" , type:"text", width: "90%" } ], selectionType: "multiple", canDragSelectText:true, canReorderRecords:false, canDragRecordsOut: true, canDragSelect:false, dragDataAction: "none", canSelectCells:true })
In particular I have see this html code in IE :
Code:
<td width="434" height="20" align="left" class="cellSelectedDark" style="overflow: hidden; padding-top: 0px; padding-bottom: 0px; white-space: nowrap;" unselectable="on">test</td>
There is a propertie to add in my ListGrid for solving this problem?
SmartClient version 10.0-p20150415
Thank all
Peppe
Comment