Hello,
I’d like to set a multi-line HTML cell in a read only mode. If I set the type to “txt” it is in edit mode. Is there a way to disable the edit mode?
Thank you in advance for your help.
If you are using grid in multiline mode - it must render multiline html content for any type of cell, including readonly ones ( “ro” )
Anyway, you can block edit operation for any columns through events
grid.attachEvent(“onEditCell”, function(stage, id , ind){
if (ind == SOME) //SOME - index of column in question
return false;
return true;
})