Hallo
I have a little question about the ListGrid. I have a ListGrid with a six ListGridFields. The type of five of them are boolean.
If I put data in the Grid I would like to disable the second cell in the third row. How can I realise that? Thanks for any help I'll get.
I have a little question about the ListGrid. I have a ListGrid with a six ListGridFields. The type of five of them are boolean.
Code:
bestaetigenField.setType(ListGridFieldType.BOOLEAN); aenderungField.setType(ListGridFieldType.BOOLEAN); neuzugangField.setType(ListGridFieldType.BOOLEAN); spLoeField.setType(ListGridFieldType.BOOLEAN); lesenField.setType(ListGridFieldType.BOOLEAN); getGridAnzeige().setFields(new ListGridField[] {klasseField, lesenField, bestaetigenField, aenderungField, neuzugangField, spLoeField});
Comment