I am using "editable: false"as an option in the colModel. I would like to make the column editable programmatically. I tried the API below, but could not get it to work. What API do you recommend and could you provide a little explanation? Thanks in advance.
//setter
//set editable of 2nd column
colM[1].editable = false;
$( ".selector" ).pqGrid( "option", "colModel", colM);