I have a listgrid which I declared/initialized in this manner:
ListGrid myListGrid = new ListGrid();
public MyConstructor(){
myListGrid.setSelectionAppearance(SelectionAppeara nce.CHECKBOX);
myListGrid.setCanSelectAll(false);
}
The codes should disable the "check all" header, the problem is, each time an empty record is fetched, the checkbox appears on the header. Is this a bug or is there any way to circumvent this behaviour ?
ListGrid myListGrid = new ListGrid();
public MyConstructor(){
myListGrid.setSelectionAppearance(SelectionAppeara nce.CHECKBOX);
myListGrid.setCanSelectAll(false);
}
The codes should disable the "check all" header, the problem is, each time an empty record is fetched, the checkbox appears on the header. Is this a bug or is there any way to circumvent this behaviour ?