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 Summary
Constructors - 
Method Summary
Modifier 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
- 
CanSelectRecordCustomizer
public CanSelectRecordCustomizer() 
 - 
 - 
Method Details
- 
canSelectRecord
canSelectRecord() 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 selectabilitygrid- the grid in which the record appears- Returns:
 - a Boolean indicating if the record can be selected, or null to delegate to default behavior
 
 
 -