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"

Line 6: Line 6:
 
*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>
 
*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>  
+
This page gives examples of widget declarations and use.<br>  
  
 
= BidiTextArea  =
 
= BidiTextArea  =

Revision as of 18:03, 13 February 2012

When you write a Rich UI application, the typical process is as follows:

  • Create a Handler type of stereotype RUIHandler.
  • Declare the widgets and customize them; for example, by assigning and coding event handlers.
  • Write initialization code in the on-construction function.
  • 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.

This page gives examples of widget declarations and use.

BidiTextArea

 

BidiTextField

 

Box

 

Button

 

Checkbox

 


Combo

 


DataGrid and related types

 


DIv, FloatLeft, and FloatRight

 


DojoAccordionContainer


DojoBarGraph


DojoBorderContainer


DojoBubbleChart


DojoButton


DojoCalendar


DojoCheckbox


DojoColorPalette


DojoComboBox


DojoContentPane


DojoContextMenu


DojoCurrencyTextBox


DojoDateTextBox


DojoDialog


DojoEditor


DojoGrid

DojoHorizontalSlider


DojoLineGraph


DojoMenu


DojoMenuItem


DojoPieChart and related types


DojoProgressBar


DojoRadioGroup


DojoStackContainer


DojoTabContainer


DojoTextArea


DojoTextField


DojoTimeTextBox


DojoTitlePane


DojoToggleButton


DojoTooltip


DojoTooltipDialog


DojoTree


DojoTreeNode


GridLayout and related types


Grouping


HTML


Hyperlink


Image


List


ListMulti


PasswordTextField


RadioGroup


Shadow


Span


TextArea


TextField


TextLabel


Tooltip


Tree and related types




Back to the top