×

Please give details of the problem

Skip to content

How to make an array column inactive

1
2
3
4
5
6
7
function unactive_column(id_array, id_column) {
var rows_count = id_array.getRowsCount();
for (var i = 0; i < rows_count; i++) {
id_array[id_column][i].setActive(false);
}
}
//example : unactive_column(id_array,"id_column");