Hi,
I have a TreeGrid with a parent node. The problem is the checkboxes should only be displayed on the child items and not on the parent node. The grid looks as follows. How can i hide the yellow cells ?
I am using gwt 2.6 und smartgwt 6.0p. This is the code for the field creation(all 3 are the same)
TreeGridField a= new TreeGridField(Cols.a,
MSG.a());
a.setCanFilter(false);
a.setType(ListGridFieldType.BOOLEAN);
Thanks for your help
I have a TreeGrid with a parent node. The problem is the checkboxes should only be displayed on the child items and not on the parent node. The grid looks as follows. How can i hide the yellow cells ?
I am using gwt 2.6 und smartgwt 6.0p. This is the code for the field creation(all 3 are the same)
TreeGridField a= new TreeGridField(Cols.a,
MSG.a());
a.setCanFilter(false);
a.setType(ListGridFieldType.BOOLEAN);
Thanks for your help
Comment