when I use setSerializableColumns() with boolean arguments, it disables the sendData() function of data processor. Here is my code(I know that there are 3 columns in the grid):
mainGrid.setSerializableColumns(true,true,false);
mainDataProcessor.sendData();
If I use string arguments, either setSerializableColumns(“true,true,false”), or setSerializableColumns(“true”,“true”,“false”), it has no effect - I can change the third column and save it to the database.
Any help is appreciated!