The screenshot of Firebug above shows the DOM objects from a site I have loaded. Actually I am using a library (EditableGrid) to allow me editing a table called 'itemlist'.
I want to set the columns property editable to false "on the fly" with JavaScript.
In the header bar of Firebug I see Window > databgrid > editableGrid > columns > 3.
Can anybody point me to the correct way on accessing and modifing the "editable" object attribute of column 3.
I tried in various combinations of
var tbl = document.getElementById('itemlist');
var col = document.getElementClassName('window.datagrid.editableGrid.columns');
col.value = "true";
but I couldn't access the property.
