Hi,
i am using BoundcheckboxField in webdatagrid. i want some checkbox ReadOnly and some of them
editable, how can i do this?
Hi Mypost,
You should do this similarly to how make some cells in a column read-only. You probably should just handle valueChanging client event on editing core and for the rows you want readonly for this column, set args.set_cancel(true);
regards,David Young
Thank you for posting in the community.
I suggest that you handle the MouseDown clientside event in this scenario in order to set the source image for the desired readonly checkboxes. For instance:
Please let me know if this helps.