Uses of Interface
to.etc.domui.dom.html.IClicked

Packages that use IClicked
to.etc.domui.component.buttons This package contains all kinds of action buttons. 
to.etc.domui.component.layout   
to.etc.domui.component.layout.title   
to.etc.domui.component.lookup   
to.etc.domui.component.menu   
to.etc.domui.component.misc   
to.etc.domui.component.tbl   
to.etc.domui.dom.html   
 

Uses of IClicked in to.etc.domui.component.buttons
 

Constructors in to.etc.domui.component.buttons with parameters of type IClicked
DefaultButton(java.lang.String txt, IClicked<DefaultButton> clicked)
           
DefaultButton(java.lang.String txt, java.lang.String icon, IClicked<DefaultButton> clicked)
           
LinkButton(java.lang.String txt, IClicked<LinkButton> clk)
           
LinkButton(java.lang.String txt, java.lang.String image, IClicked<LinkButton> clk)
           
SmallImgButton(java.lang.String rurl, IClicked<SmallImgButton> cl)
          If the rurl is prefixed with THEME/ it specifies an image from the current THEME's directory.
 

Uses of IClicked in to.etc.domui.component.layout
 

Methods in to.etc.domui.component.layout that return IClicked
 IClicked<FloatingWindow> FloatingWindow.getOnClose()
          Get the current "onClose" handler.
 

Methods in to.etc.domui.component.layout with parameters of type IClicked
 DefaultButton ButtonBar.addButton(java.lang.String txt, IClicked<DefaultButton> click)
           
 DefaultButton ButtonMakerBase.addButton(java.lang.String txt, IClicked<DefaultButton> click)
           
 DefaultButton ButtonBar.addButton(java.lang.String txt, java.lang.String icon, IClicked<DefaultButton> click)
          Add a normal button.
 DefaultButton ButtonMakerBase.addButton(java.lang.String txt, java.lang.String icon, IClicked<DefaultButton> click)
          Add a normal button.
 void CaptionedHeader.addButton(java.lang.String image, java.lang.String hint, IClicked<NodeBase> handler)
           
 void Caption.addButton(java.lang.String image, java.lang.String hint, IClicked<NodeBase> handler)
           
 DefaultButton ButtonBar.addConfirmedButton(java.lang.String txt, java.lang.String msg, IClicked<DefaultButton> click)
           
 DefaultButton ButtonMakerBase.addConfirmedButton(java.lang.String txt, java.lang.String msg, IClicked<DefaultButton> click)
           
 DefaultButton ButtonBar.addConfirmedButton(java.lang.String txt, java.lang.String icon, java.lang.String msg, IClicked<DefaultButton> click)
           
 DefaultButton ButtonMakerBase.addConfirmedButton(java.lang.String txt, java.lang.String icon, java.lang.String msg, IClicked<DefaultButton> click)
           
 LinkButton ButtonBar.addConfirmedLinkButton(java.lang.String txt, java.lang.String img, java.lang.String msg, IClicked<LinkButton> click)
           
 LinkButton ButtonMakerBase.addConfirmedLinkButton(java.lang.String txt, java.lang.String img, java.lang.String msg, IClicked<LinkButton> click)
           
 LinkButton ButtonBar.addLinkButton(java.lang.String txt, java.lang.String img, IClicked<LinkButton> click)
           
 LinkButton ButtonMakerBase.addLinkButton(java.lang.String txt, java.lang.String img, IClicked<LinkButton> click)
           
 void FloatingWindow.setOnClose(IClicked<FloatingWindow> onClose)
          Set a Clicked handler to be called when this floater is closed by it's close button.
 

Uses of IClicked in to.etc.domui.component.layout.title
 

Methods in to.etc.domui.component.layout.title with parameters of type IClicked
 void AppPageTitleBar.addButton(java.lang.String image, java.lang.String hint, IClicked<NodeBase> handler)
           
 

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

Methods in to.etc.domui.component.lookup that return IClicked
 IClicked<NodeBase> LookupForm.getOnAfterCollapse()
          Returns listener to after collapse event.
 IClicked<NodeBase> LookupForm.getOnAfterRestore()
          Returns listener to after restore event.
 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 IClicked
 void LookupForm.setOnAfterCollapse(IClicked<NodeBase> onAfterCollapse)
          Attach listener to after collpase event.
 void LookupForm.setOnAfterRestore(IClicked<NodeBase> onAfterRestore)
          Attach listener to after restore event.
 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 IClicked in to.etc.domui.component.menu
 

Methods in to.etc.domui.component.menu that return IClicked
 IClicked<SimplePopupMenu> PopupMenu.Item.getClicked()
           
 

Methods in to.etc.domui.component.menu with parameters of type IClicked
 void PopupMenu.addItem(java.lang.String caption, java.lang.String icon, IClicked<SimplePopupMenu> clk)
           
 void SimplePopupMenu.addItem(java.lang.String caption, java.lang.String icon, IClicked<SimplePopupMenu> clk)
           
 void PopupMenu.addItem(java.lang.String caption, java.lang.String icon, java.lang.String hint, boolean disabled, IClicked<SimplePopupMenu> clk)
           
 void SimplePopupMenu.addItem(java.lang.String caption, java.lang.String icon, java.lang.String hint, boolean disabled, IClicked<SimplePopupMenu> clk)
           
 

Constructors in to.etc.domui.component.menu with parameters of type IClicked
PopupMenu.Item(java.lang.String icon, java.lang.String title, java.lang.String hint, boolean disabled, IClicked<SimplePopupMenu> clicked)
           
 

Uses of IClicked in to.etc.domui.component.misc
 

Methods in to.etc.domui.component.misc with parameters of type IClicked
static DefaultButton MsgBox.areYouSureButton(java.lang.String text, java.lang.String message, IClicked<DefaultButton> ch)
          Create a button which will show an "are you sure" yes/no dialog with a specified text.
static DefaultButton MsgBox.areYouSureButton(java.lang.String text, java.lang.String icon, java.lang.String message, IClicked<DefaultButton> ch)
          Create a button which will show an "are you sure" yes/no dialog with a specified text.
static LinkButton MsgBox.areYouSureLinkButton(java.lang.String text, java.lang.String message, IClicked<LinkButton> ch)
          Create a button which will show an "are you sure" yes/no dialog with a specified text.
static LinkButton MsgBox.areYouSureLinkButton(java.lang.String text, java.lang.String icon, java.lang.String message, IClicked<LinkButton> ch)
          Create a LinkButton which will show an "are you sure" yes/no dialog with a specified text.
static void MsgBox.continueCancel(NodeBase dad, java.lang.String string, IClicked<MsgBox> onAnswer)
          Ask a continue/cancel confirmation, and call the IClicked handler for CONTINUE only.
static void MsgBox.yesNo(NodeBase dad, MsgBox.Type msgtype, java.lang.String string, IClicked<MsgBox> onAnswer)
          Ask a yes/no confirmation; call the onAnswer handler if YES is selected and do nothing otherwise.
static void MsgBox.yesNo(NodeBase dad, java.lang.String string, IClicked<MsgBox> onAnswer)
          Ask a yes/no confirmation; call the onAnswer handler if YES is selected and do nothing otherwise.
 

Uses of IClicked in to.etc.domui.component.tbl
 

Methods in to.etc.domui.component.tbl with parameters of type IClicked
 void DataPager.addButton(java.lang.String image, IClicked<DataPager> click, BundleRef bundle, java.lang.String ttlkey)
           
 

Uses of IClicked in to.etc.domui.dom.html
 

Methods in to.etc.domui.dom.html with parameters of type IClicked
 void Select.addExtraButton(java.lang.String img, java.lang.String title, IClicked<NodeBase> click)
          Add a small image button after the combo.