Uses of Class
to.etc.domui.component.lookup.LookupForm

Packages that use LookupForm
to.etc.domui.component.input   
to.etc.domui.component.lookup   
to.etc.domui.pages.generic   
 

Uses of LookupForm in to.etc.domui.component.input
 

Methods in to.etc.domui.component.input that return LookupForm
 LookupForm<T> LookupInput.getExternalLookupForm()
           
 LookupForm<T> SimpleLookup.getExternalLookupForm()
           
 

Methods in to.etc.domui.component.input with parameters of type LookupForm
 void LookupInput.setExternalLookupForm(LookupForm<T> externalLookupForm)
           
 void SimpleLookup.setExternalLookupForm(LookupForm<T> externalLookupForm)
           
 

Uses of LookupForm in to.etc.domui.component.lookup
 

Methods in to.etc.domui.component.lookup that return LookupForm
 LookupForm<T> MultipleSelectionLookup.getExternalLookupForm()
           
 

Methods in to.etc.domui.component.lookup that return types with arguments of type LookupForm
 IClicked<LookupForm<T>> LookupForm.getOnCancel()
           
 IClicked<? extends LookupForm<T>> LookupForm.getOnClear()
           
 IClicked<LookupForm<T>> LookupForm.getOnNew()
          Sets the onNew handler.
 

Methods in to.etc.domui.component.lookup with parameters of type LookupForm
protected  void MultipleSelectionLookup.search(LookupForm<T> lf)
           
 void MultipleSelectionLookup.setExternalLookupForm(LookupForm<T> externalLookupForm)
           
 

Method parameters in to.etc.domui.component.lookup with type arguments of type LookupForm
 void LookupForm.setOnCancel(IClicked<LookupForm<T>> onCancel)
          When set, this causes a "cancel" button to be added to the form.
 void LookupForm.setOnClear(IClicked<? extends LookupForm<T>> onClear)
          Listener to call when the "clear" button is pressed.
 void LookupForm.setOnNew(IClicked<LookupForm<T>> onNew)
          Returns the onNew handler.
 

Uses of LookupForm in to.etc.domui.pages.generic
 

Methods in to.etc.domui.pages.generic that return LookupForm
protected  LookupForm<T> BasicListPage.getLookupForm()
           
 

Methods in to.etc.domui.pages.generic with parameters of type LookupForm
protected  void BasicListPage.customizeLookupForm(LookupForm<T> lf)
          Override this to customize the lookup form.
protected  void BasicListPage.onLookupFormClear(LookupForm<T> lf)
          Override to do extra things when the lookupform's "clear" button is pressed.
protected  void BasicListPage.setLookupForm(LookupForm<T> lookupForm)