Hi Isomorphic,
using 6.1d, is there a way using ListGrid.setMinFieldWidth(50) and at the same time keeping generated fields like the removeField for setCanRemoveRecords(true) or the rowNumberField for setShowRowNumbers(true) at their normal sizes?
This does not work for me, the width is 50 anyway.
Perhaps the method that checks the minFieldWidth should exclude those two fields?
Thank you & Best regards
Blama
using 6.1d, is there a way using ListGrid.setMinFieldWidth(50) and at the same time keeping generated fields like the removeField for setCanRemoveRecords(true) or the rowNumberField for setShowRowNumbers(true) at their normal sizes?
This does not work for me, the width is 50 anyway.
Code:
ListGrid lg = new ListGrid() { { setMinFieldWidth(50); setRemoveFieldProperties(new ListGridField() { { setWidth(24); } }); } }; ListGrid.setDefaultProperties(lg);
Thank you & Best regards
Blama
Comment