Hello,
How not to show checkbox for folder??
I have TreeGrid with ckeckBox, But at a time only one checkbox should be selected. I can do that using following 2 property
selectionAppearance:"checkbox",
selectionType: 'single',
But This also allow to select folder.
I do not want to display checkbox for folder. No checkbox, no selection.
isc.treeGrid.create({
position: "relative",
canHover: false,
autoDraw: false,
autoFetchData: true,
//canEdit: true,
canDragRecordsOut: false,
canReorderRecords: true,
canAcceptDroppedRecords: true,
showConnectors: true,
showRollOver: false,
alternateRecordStyles:true,
selectionAppearance:"checkbox",
selectionType: 'single',
editEvent: "doubleClick",
height: "100%",
widht: "100%",
showHeader: false,
canEdit: true
})
I use smartClient v10.0p_2015-01-14/PowerEdition Development Only (2015-01-14)
Thanking you.
How not to show checkbox for folder??
I have TreeGrid with ckeckBox, But at a time only one checkbox should be selected. I can do that using following 2 property
selectionAppearance:"checkbox",
selectionType: 'single',
But This also allow to select folder.
I do not want to display checkbox for folder. No checkbox, no selection.
isc.treeGrid.create({
position: "relative",
canHover: false,
autoDraw: false,
autoFetchData: true,
//canEdit: true,
canDragRecordsOut: false,
canReorderRecords: true,
canAcceptDroppedRecords: true,
showConnectors: true,
showRollOver: false,
alternateRecordStyles:true,
selectionAppearance:"checkbox",
selectionType: 'single',
editEvent: "doubleClick",
height: "100%",
widht: "100%",
showHeader: false,
canEdit: true
})
I use smartClient v10.0p_2015-01-14/PowerEdition Development Only (2015-01-14)
Thanking you.
Comment