I am using 7.0 version of Smartclient. I read somewhere that the checkbox created is a autochild of listgrid. Trying to find how to get access to it so that it can be disabled/hidden.
Yes I tried canEdit, canEditCell, showif etc etc. but didn't work. I am currently using ListGridRecord.enabled = false to disbale selectyion of a particular record. But this is not a good solution as selection of the record should be allowed. Only checkbox should be disabled.
to gain access to the checkbox, you can use editorProperties - for example I just tried editorProperties:{disabled: true}, when in edit mode the checkbox looks disabled..may be a good point to start? Also canEdit on ListGridField renders the checkboxes as read-only
Comment