Hi.
ListGrid with some fields and one field defined as boolean. In the UI it is displayed as check-box (it will be used to collect records for mass or bulk update operation).
We don't want to use this code(business requirements reasons):
What I want to achieve is to not highlight record if user only check a checkbox in listgrid.
The reason is, that under listGrid we have detailviewer with additional data related to selected (highlighted) record -> and we do not want to always fetch this additional data only when checkbox was checked/unchecked.
Is this possible ? Can i somehow distinguish if only checkbox cell was clicked and then cancel SelectionEvent.
Regards,
Fero
ListGrid with some fields and one field defined as boolean. In the UI it is displayed as check-box (it will be used to collect records for mass or bulk update operation).
We don't want to use this code(business requirements reasons):
Code:
grid.setSelectionType(SelectionStyle.SIMPLE); grid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
The reason is, that under listGrid we have detailviewer with additional data related to selected (highlighted) record -> and we do not want to always fetch this additional data only when checkbox was checked/unchecked.
Is this possible ? Can i somehow distinguish if only checkbox cell was clicked and then cancel SelectionEvent.
Regards,
Fero
Comment