Package com.smartgwt.client.widgets.grid
Class CanSelectRecordCustomizer
java.lang.Object
com.smartgwt.client.widgets.grid.CanSelectRecordCustomizer
Called to determine whether a given record can be selected in a grid.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract BooleancanSelectRecord(ListGridRecord record, ListGrid grid) canSelectRecord() should be implemented and return a Boolean value if applicable, or null to fall through to the builtin implementation.
- 
Constructor Details- 
CanSelectRecordCustomizerpublic CanSelectRecordCustomizer()
 
- 
- 
Method Details- 
canSelectRecordcanSelectRecord() should be implemented and return a Boolean value if applicable, or null to fall through to the builtin implementation.- Parameters:
- record- the record test sest for selectability
- grid- the grid in which the record appears
- Returns:
- a Boolean indicating if the record can be selected, or null to delegate to default behavior
 
 
-