Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:Declaring widgets"

(Removing all content from page)
 
(144 intermediate revisions by the same user not shown)
Line 1: Line 1:
When you write a Rich UI application, the typical process is as follows:
 
  
*Create a Handler type of stereotype RUIHandler.<br>
 
*Declare the widgets and customize them; for example, by assigning and coding event handlers. <br>
 
*Write initialization code in the on-construction function.<br>
 
*Display a given widget by including it either in the '''initialUI''' array of the Rich UI handler or in the '''children''' array of another widget.<br>
 
 
This page lists the widgets by type.<br>
 
 
= BidiTextArea  =
 
 
<source lang="java">
 
 
</source>
 
 
= BidiTextField  =
 
 
<source lang="java">
 
 
</source>
 
 
= Box  =
 
 
<source lang="java">
 
 
</source>
 
 
= Button  =
 
 
<source lang="java">
 
 
</source>
 
 
= Checkbox  =
 
 
<source lang="java">
 
 
</source>
 
 
<br>
 
 
= Combo  =
 
 
<source lang="java">
 
 
</source>
 
 
<br>
 
 
= DataGrid and related types  =
 
 
<source lang="java">
 
 
</source>
 
 
<br>
 
 
= DIv, FloatLeft, and FloatRight  =
 
 
<source lang="java">
 
 
</source>
 
 
<br>
 
 
= DojoAccordionContainer  =
 
 
<br>
 
 
= DojoBarGraph  =
 
 
<br>
 
 
= DojoBorderContainer  =
 
 
<br>
 
 
= DojoBubbleChart  =
 
 
<br>
 
 
= DojoButton  =
 
 
<br>
 
 
= DojoCalendar  =
 
 
<br>
 
 
= DojoCheckbox  =
 
 
<br>
 
 
= DojoColorPalette  =
 
 
<br>
 
 
= DojoComboBox  =
 
 
<br>
 
 
= DojoContentPane  =
 
 
<br>
 
 
= DojoContextMenu  =
 
 
<br>
 
 
= DojoCurrencyTextBox  =
 
 
<br>
 
 
= DojoDateTextBox  =
 
 
<br>
 
 
= DojoDialog  =
 
 
<br>
 
 
= DojoEditor  =
 
 
<br>
 
 
= DojoGrid  =
 
 
= DojoHorizontalSlider  =
 
 
<br>
 
 
= DojoLineGraph  =
 
 
<br>
 
 
= DojoMenu  =
 
 
<br>
 
 
= DojoMenuItem  =
 
 
<br>
 
 
= DojoPieChart and related types  =
 
 
<br>
 
 
= DojoProgressBar  =
 
 
<br>
 
 
= DojoRadioGroup  =
 
 
<br>
 
 
= DojoStackContainer  =
 
 
<br>
 
 
= DojoTabContainer  =
 
 
<br>
 
 
= DojoTextArea  =
 
 
<br>
 
 
= DojoTextField  =
 
 
<br>
 
 
= DojoTimeTextBox  =
 
 
<br>
 
 
= DojoTitlePane  =
 
 
<br>
 
 
= DojoToggleButton  =
 
 
<br>
 
 
= DojoTooltip  =
 
 
<br>
 
 
= DojoTooltipDialog  =
 
 
<br>
 
 
= DojoTree  =
 
 
<br>
 
 
= DojoTreeNode  =
 
 
<br>
 
 
= GridLayout and related types  =
 
 
<br>
 
 
= Grouping  =
 
 
<br>
 
 
= HTML  =
 
 
<br>
 
 
= Hyperlink  =
 
 
<br>
 
 
= Image  =
 
 
<br>
 
 
= List  =
 
 
<br>
 
 
= ListMulti  =
 
 
<br>
 
 
= PasswordTextField  =
 
 
<br>
 
 
= RadioGroup  =
 
 
<br>
 
 
= Shadow  =
 
 
<br>
 
 
= Span  =
 
 
<br>
 
 
= TextArea  =
 
 
<br>
 
 
= TextField  =
 
 
<br>
 
 
= TextLabel  =
 
 
<br>
 
 
= Tooltip  =
 
 
<br>
 
 
= Tree and related types  =
 
 
<br>
 
 
<br>
 
 
<br>
 

Latest revision as of 17:39, 16 February 2012

Back to the top