Package com.saperion.ngc.iform.field
Interface LookupField
-
- All Known Implementing Classes:
AdvancedLookupField
,LookupTextField
public interface LookupField
Interface for lookup fields in a form.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ON_LOOKUP_SELECTED
Name of the event fired when the user selected a lookup entry.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clearSelectedRow()
Clears the selected row from the field.ResultProperties
getSelectedRow()
Returns the selected row in the lookup table belonging to this lookup field.
-
-
-
Field Detail
-
ON_LOOKUP_SELECTED
static final java.lang.String ON_LOOKUP_SELECTED
Name of the event fired when the user selected a lookup entry.- See Also:
- Constant Field Values
-
-
Method Detail
-
getSelectedRow
ResultProperties getSelectedRow()
Returns the selected row in the lookup table belonging to this lookup field.- Returns:
ResultProperties
containing the selected row or null, if no row was selected so far
-
clearSelectedRow
void clearSelectedRow()
Clears the selected row from the field. The lookup table will not be changed.
-
-