Hi,
I want to add select all check box in the column header for a databound listgridfield
setAlternateRecordStyles(true);
setHoverWidth(200);
setHoverHeight(20);
setCanEdit(true);
setEditEvent(ListGridEditEvent.CLICK);
setEditByCell(true);
ListGridField remRecAccepted = new ListGridField("remRecAccepted");
remRecAccepted.setType(ListGridFieldType.BOOLEAN);
remRecAccepted.setWidth("3%");
I am able to get the check boxes in the Grid, but hw can I get the check box in the column header.
Thanks in advance for any help.
Thanks
I want to add select all check box in the column header for a databound listgridfield
setAlternateRecordStyles(true);
setHoverWidth(200);
setHoverHeight(20);
setCanEdit(true);
setEditEvent(ListGridEditEvent.CLICK);
setEditByCell(true);
ListGridField remRecAccepted = new ListGridField("remRecAccepted");
remRecAccepted.setType(ListGridFieldType.BOOLEAN);
remRecAccepted.setWidth("3%");
I am able to get the check boxes in the Grid, but hw can I get the check box in the column header.
Thanks in advance for any help.
Thanks
Comment