how to use a text view using editors and how to enable/disable text view using editors in datatable

can anyone help me how to using text view in a datatable column and how to enable and disable it and how to call onchange method when i enter some value in it.
thanks in adv
rupangshu

Try onBeforeEditStart event. If its handler returns false, the editor won’t open.

dataTable.attachEvent("onBeforeEditStart", function(id){
    if(...){
        return true;
    }
    return false;
});

instead of text box can we using ui.text view in editors datatable

Nope, it is not possible.

Which functionality of ui.text you are missing in the text editor?

i m not getting the disable property of ui.text in editors.
can u plz help

You can block editor opening by using the onBeforeEditStart event.

Also, you can disable whole grid, if you need to block all edit operations temporary.