This question is locked. New answers and comments are not allowed.
Hi
How to prevent cell from edit using
i have the following code
but thsi will prevent edit one full row.I need few cells in row Uneditable in onRowDataBound function
How to prevent cell from edit using
e.stopPropagation or any other method is there to prevent cell editi have the following code
function onRowDataBound(e) { if ( !editable(e.dataItem)) { $(e.row).find("td").click(function(e) { e.stopPropagation(); }); }}but thsi will prevent edit one full row.I need few cells in row Uneditable in onRowDataBound function