|
|
|
_activateNextButton(
) :
void
|
|
|
|
_applyAttributes(
) :
void
Step during widget creation to copy all widget attributes to the
DOM as per attributeMap and _setXXXAttr functions.
Skips over blank/false attribute values, unless they were explicitly specified
as parameters to the widget, since those are the default anyway,
and setting tabIndex="" is different than not setting tabIndex at all.
It processes the attributes in the attribute map first, and then
it goes through and processes the attributes for the _setXXXAttr
functions that have been specified
|
|
|
|
_attrToDom(
attr
: String
value
: String
) :
void
Reflect a widget attribute (title, tabIndex, duration etc.) to
the widget DOM, as specified in attributeMap.
Also sets this["attr"] to the new value.
Note some attributes like "type"
cannot be processed this way as they are not mutable.
Parameter |
Type |
Usage |
Description |
attr |
String |
required |
|
value |
String |
required |
|
|
|
|
|
_buildStep(
stepNumber
) :
void
build template of given step and add it to the container
step with flag IsFinishStep is added as first element on container for summary mode of this step
Parameter |
Type |
Usage |
Description |
stepNumber |
|
required |
|
|
|
|
|
_buildStepNavigation(
) :
void
build step navigation and stepNavigation Bubble
|
|
|
|
_calculateRestrictorOverlay(
) :
void
|
|
|
|
_changeNavigationNodeState(
stepNumber
state
) :
void
change states of nextNavigationNodes
only steps with state done can be clicked
Parameter |
Type |
Usage |
Description |
stepNumber |
|
required |
|
state |
|
required |
|
|
|
|
|
_closeLastInlineTinyMCE(
) :
void
close last instance of inline tinyMCE
Inline tinyMCE is still not working correct
|
|
|
|
_closeWizard(
) :
void
activates the last step without saving necessary for errors
|
|
|
|
_disableNextButton(
) :
void
|
|
|
|
_dontHideStepNavigationBubble(
evt
) :
void
clear hide bubble
Parameter |
Type |
Usage |
Description |
evt |
|
required |
|
|
|
|
|
_getAttrNames(
name
) :
void
Helper function for Widget.attr().
Caches attribute name values so we don't do the string ops every time.
Parameter |
Type |
Usage |
Description |
name |
|
required |
|
|
|
|
|
_getSaveData(
stepNumber
) :
void
this function collects all data from the given step template which has to be send to the server
Parameter |
Type |
Usage |
Description |
stepNumber |
|
required |
|
|
|
|
|
_hideStepNavigationBubble(
evt
) :
void
hide step navigation bubble
Parameter |
Type |
Usage |
Description |
evt |
|
required |
|
|
|
|
|
_initialize(
) :
void
make necessary first values to start wizard
show step jump list
register on onbeforeunload
|
|
|
|
_loadStep(
stepNumber
) :
void
load data of step defined by given stepNumber with async json request
when step is loaded call redStepResponse with given data
loads given step asynchronous from server
Parameter |
Type |
Usage |
Description |
stepNumber |
|
required |
|
|
|
|
|
_loadStepSync(
stepNumber
) :
void
loads given step synchronous from server
is needed when preloading is disabled and next step has to be loaded on next Button click
checks if epages.vars[this.id+'TemplateObjectID'] is defined and adds it to request is
neccassary if steps are influenced by each other
Parameter |
Type |
Usage |
Description |
stepNumber |
|
required |
|
|
|
|
|
_onBackButtonClick(
) :
void
|
|
|
|
_onBlur(
) :
void
This is where widgets do processing for when they stop being active,
such as changing CSS classes. See onBlur() for more details.
|
|
|
|
_onCancel(
) :
void
event function - redirect to cancel page
|
|
|
|
_onConnect(
event
: String
) :
void
Called when someone connects to one of my handlers.
"Turn on" that handler if it isn't active yet.
This is also called for every single initialization parameter
so need to do nothing for parameters like "id".
Parameter |
Type |
Usage |
Description |
event |
String |
required |
|
|
|
|
|
_onDomNodeEvent(
evt
) :
void
collect all events that happen on the domNode of this widget to update preview nodes if input nodes were changed
Parameter |
Type |
Usage |
Description |
evt |
|
required |
|
|
|
|
|
_onFocus(
e
) :
void
This is where widgets do processing for when they are active,
such as changing CSS classes. See onFocus() for more details.
Parameter |
Type |
Usage |
Description |
e |
|
required |
|
|
|
|
|
_onNextButtonClick(
) :
void
got to next step and save if saveOnNext is defined
|
|
|
|
_onQuickFinishClick(
) :
void
save data and go to last step
|
|
|
|
_onSaveButtonClick(
) :
void
collect save data and send it to the server
go to last step this is always the quickStart step
|
|
|
|
_onShow(
) :
void
Internal method called when this widget is made visible.
See onShow for details.
|
|
|
|
_onStepNumberClick(
evt
) :
void
change to clicked step
Parameter |
Type |
Usage |
Description |
evt |
|
required |
|
|
|
|
|
_onStepNumberHover(
evt
) :
void
show stepBubble on hover of stepNumbers
Parameter |
Type |
Usage |
Description |
evt |
|
required |
|
|
|
|
|
_onSwitchToEditMode(
templateName
) :
void
switch given step to editmode find step with given templateName
Parameter |
Type |
Usage |
Description |
templateName |
|
required |
|
|
|
|
|
_onSwitchToStep(
templateName
) :
void
message function
Parameter |
Type |
Usage |
Description |
templateName |
|
required |
|
|
|
|
|
_preloadSteps(
) :
void
load template of every defined step only loads one step at the same time no multiple simultan loading
checks if step is loaded, step is loaded when template is set
load next step where template is not defined
|
|
|
|
_readStepResponse(
response
stepNumber
) :
void
read response from server and load next step if preloading is enabled
Parameter |
Type |
Usage |
Description |
response |
|
required |
|
stepNumber |
|
required |
|
|
|
|
|
_setClassAttr(
value
: String
) :
void
Custom setter for the CSS "class" attribute
Parameter |
Type |
Usage |
Description |
value |
String |
required |
|
|
|
|
|
_setStyleAttr(
value
: String||Object
) :
void
Sets the style attribut of the widget according to value,
Determines which node to set the style on based on style setting
in attributeMap.
Parameter |
Type |
Usage |
Description |
value |
String||Object |
required |
|
|
|
|
|
_showErrorMessage(
messageTitle
messageText
) :
void
show given error message
Parameter |
Type |
Usage |
Description |
messageTitle |
|
required |
|
messageText |
|
required |
|
|
|
|
|
_showErrors(
errors
) :
void
show given errors to customer with an error message
Parameter |
Type |
Usage |
Description |
errors |
|
required |
|
|
|
|
|
_toggleLoaderOverlay(
toggleState
: boolean
) :
void
Parameter |
Type |
Usage |
Description |
toggleState |
boolean |
required |
|
|
|
|
|
_updatePreview(
updateNode
: dom
updateTask
: string
updateValue
: string
) :
void
insert new value to preview dom node
Parameter |
Type |
Usage |
Description |
updateNode |
dom |
required |
node |
updateTask |
string |
required |
|
updateValue |
string |
required |
|
|
|
|
|
activateStep(
nextStepNumber
) :
void
activate given step
change to next step is only possible if next step is already loaded
Parameter |
Type |
Usage |
Description |
nextStepNumber |
|
required |
|
|
|
|
|
addStep(
stepData
) :
void
add step to wizard with this function is only working before wizard is started
Parameter |
Type |
Usage |
Description |
stepData |
|
required |
|
Examples
|
|
|
|
attr(
name
: String|Object
value
: Object
) :
void
Set or get properties on a widget instance.
Get or set named properties on a widget. If no value is
provided, the current value of the attribute is returned,
potentially via a getter method. If a value is provided, then
the method acts as a setter, assigning the value to the name,
potentially calling any explicitly provided setters to handle
the operation. For instance, if the widget has properties "foo"
Parameter |
Type |
Usage |
Description |
name |
String|Object |
required |
The property to get or set. If an object is passed here and not
a string, its keys are used as names of attributes to be set
and the value of the object as values to set in the widget. |
value |
Object |
optional |
Optional. If provided, attr() operates as a setter. If omitted,
the current value of the named property is returned. |
|
|
|
|
buildRendering(
) :
void
Construct the UI for this widget from a template, setting this.domNode.
Lookup cached version of template, and download to cache if it
isn't there already. Returns either a DomNode or a string, depending on
whether or not the template contains ${foo} replacement parameters.
|
|
|
|
checkChanges(
) :
void
|
|
|
|
connect(
obj
: Object|null
event
: String|Function
method
: String|Function
) :
void
Connects specified obj/event to specified method of this object
and registers for disconnect() on widget destroy.
Provide widget-specific analog to dojo.connect, except with the
implicit use of this widget as the target object.
This version of connect also provides a special "ondijitclick"
event which triggers on a click or space or enter keyup
Parameter |
Type |
Usage |
Description |
obj |
Object|null |
required |
|
event |
String|Function |
required |
|
method |
String|Function |
required |
|
Examples
|
|
|
|
constructor(
) :
void
|
|
|
|
create(
params
: Object
srcNodeRef
: DomNode|String
) :
void
Kick off the life-cycle of a widget
Create calls a number of widget methods (postMixInProperties, buildRendering, postCreate,
Parameter |
Type |
Usage |
Description |
params |
Object |
optional |
Hash of initialization parameters for widget, including
scalar values (like title, duration etc.) and functions,
typically callbacks like onClick. |
srcNodeRef |
DomNode|String |
optional |
|
|
|
|
|
createNodesFromText(
text
: String
) :
void
Parameter |
Type |
Usage |
Description |
text |
String |
required |
|
|
|
|
|
destroy(
preserveDom
: Boolean
) :
void
Destroy this widget, but not its descendants.
This method will, however, destroy internal widgets such as those used within a template.
Parameter |
Type |
Usage |
Description |
preserveDom |
Boolean |
required |
If true, this method will leave the original DOM structure alone. |
|
|
|
|
destroyDescendants(
preserveDom
: Boolean
) :
void
Recursively destroy the children of this widget and their
descendants.
Parameter |
Type |
Usage |
Description |
preserveDom |
Boolean |
optional |
If true, the preserveDom attribute is passed to all descendant
widget's .destroy() method. Not for use with _Templated
widgets. |
|
|
|
|
destroyRecursive(
preserveDom
: Boolean
) :
void
Destroy this widget and its descendants
This is the generic "destructor" function that all widget users
should call to cleanly discard with a widget. Once a widget is
destroyed, it is removed from the manager object.
Parameter |
Type |
Usage |
Description |
preserveDom |
Boolean |
optional |
If true, this method will leave the original DOM structure |
|
|
|
|
destroyRendering(
preserveDom
: Boolean
) :
void
Destroys the DOM nodes associated with this widget
Parameter |
Type |
Usage |
Description |
preserveDom |
Boolean |
optional |
If true, this method will leave the original DOM structure alone |
|
|
|
|
disconnect(
handles
: _Widget.Handle
) :
void
Disconnects handle created by connect .
Also removes handle from this widget's list of connects.
Parameter |
Type |
Usage |
Description |
handles |
_Widget.Handle |
required |
|
|
|
|
|
getCachedTemplate(
templatePath
: String
templateString
: String
alwaysUseString
translation
) :
void
static method to get a template based on the templatePath or
templateString key
Parameter |
Type |
Usage |
Description |
templatePath |
String |
required |
the URL to get the template from. dojo.uri.Uri is often passed as well. |
templateString |
String |
optional |
a string to use in lieu of fetching the template from a URL |
alwaysUseString |
|
required |
|
translation |
|
required |
|
|
|
|
|
getChildren(
) :
void
Returns all the widgets contained by this, i.e., all widgets underneath this.containerNode.
Does not return nested widgets, nor widgets that are part of this widget's template.
|
|
|
|
getDescendants(
) :
void
Returns all the widgets contained by this, i.e., all widgets underneath this.containerNode.
This method should generally be avoided as it returns widgets declared in templates, which are
supposed to be internal/hidden, but it's left here for back-compat reasons.
|
|
|
|
getTranslationName(
) :
void
return the translation file name (without locale and .xml)
convert this.templatePath to this.translationName of translation name is null
Examples
|
|
|
|
isFocusable(
) :
void
Return true if this widget can currently be focused
and false if not
|
|
|
|
isLeftToRight(
) :
void
Checks the page for text direction
|
|
|
|
onBlur(
) :
void
Called when the widget stops being "active" because
focus moved to something outside of it, or the user
clicked somewhere outside of it, or the widget was
hidden.
|
|
|
|
onClick(
event
: mouse
) :
void
Connect to this function to receive notifications of mouse click events.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onClose(
) :
void
Parameter for children of dijit.layout.StackContainer or subclasses.
Callback if a user tries to close the child. Child will be closed if this function returns true.
|
|
|
|
onDblClick(
event
: mouse
) :
void
Connect to this function to receive notifications of mouse double click events.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onFocus(
) :
void
Called when the widget becomes "active" because
it or a widget inside of it either has focus, or has recently
been clicked.
|
|
|
|
onHide(
) :
void
Called when another widget becomes the selected pane in a
dijit.layout.TabContainer , dijit.layout.StackContainer ,
dijit.layout.AccordionContainer , etc.
Also called to indicate hide of a dijit.Dialog , dijit.TooltipDialog , or dijit.TitlePane .
|
|
|
|
onKeyDown(
event
: key
) :
void
Connect to this function to receive notifications of keys being pressed down.
Parameter |
Type |
Usage |
Description |
event |
key |
required |
Event |
|
|
|
|
onKeyPress(
event
: key
) :
void
Connect to this function to receive notifications of printable keys being typed.
Parameter |
Type |
Usage |
Description |
event |
key |
required |
Event |
|
|
|
|
onKeyUp(
event
: key
) :
void
Connect to this function to receive notifications of keys being released.
Parameter |
Type |
Usage |
Description |
event |
key |
required |
Event |
|
|
|
|
onMouseDown(
event
: mouse
) :
void
Connect to this function to receive notifications of when the mouse button is pressed down.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onMouseEnter(
event
: mouse
) :
void
Connect to this function to receive notifications of when the mouse moves onto this widget.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onMouseLeave(
event
: mouse
) :
void
Connect to this function to receive notifications of when the mouse moves off of this widget.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onMouseMove(
event
: mouse
) :
void
Connect to this function to receive notifications of when the mouse moves over nodes contained within this widget.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onMouseOut(
event
: mouse
) :
void
Connect to this function to receive notifications of when the mouse moves off of nodes contained within this widget.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onMouseOver(
event
: mouse
) :
void
Connect to this function to receive notifications of when the mouse moves onto nodes contained within this widget.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onMouseUp(
event
: mouse
) :
void
Connect to this function to receive notifications of when the mouse button is released.
Parameter |
Type |
Usage |
Description |
event |
mouse |
required |
Event |
|
|
|
|
onShow(
) :
void
Called when this widget becomes the selected pane in a
dijit.layout.TabContainer , dijit.layout.StackContainer ,
dijit.layout.AccordionContainer , etc.
Also called to indicate display of a dijit.Dialog , dijit.TooltipDialog , or dijit.TitlePane .
|
|
|
|
placeAt(
reference
: String|DomNode|_Widget
position
: String|Int
) :
void
Place this widget's domNode reference somewhere in the DOM based
on standard dojo.place conventions, or passing a Widget reference that
contains and addChild member.
A convenience function provided in all _Widgets, providing a simple
shorthand mechanism to put an existing (or newly created) Widget
somewhere in the dom, and allow chaining.
Parameter |
Type |
Usage |
Description |
reference |
String|DomNode|_Widget |
required |
The String id of a domNode, a domNode reference, or a reference to a Widget posessing
an addChild method. |
position |
String|Int |
optional |
If passed a string or domNode reference, the position argument |
Examples
|
|
|
|
postCreate(
) :
void
Processing after the DOM fragment is created
Called after the DOM fragment has been created, but not necessarily
added to the document. Do not include any operations which rely on
node dimensions or placement.
|
|
|
|
postMixInProperties(
) :
void
initialize all necessary objects and arrays, convert flags to real boolean
|
|
|
|
postscript(
params
: Object
srcNodeRef
: DomNode|String
) :
void
Kicks off widget instantiation. See create() for details.
Parameter |
Type |
Usage |
Description |
params |
Object |
optional |
|
srcNodeRef |
DomNode|String |
required |
|
|
|
|
|
saveData(
) :
void
save all data that is inside _objects to the server
after successfull save _objects get cleared to allow override of data if user goes back to an already saved step
when debugMode is true than saveData sends every object in a own request to the server
|
|
|
|
setAttribute(
attr
: String
value
: anything
) :
void
Deprecated. Use attr() instead.
Parameter |
Type |
Usage |
Description |
attr |
String |
required |
|
value |
anything |
required |
|
|
|
|
|
start(
) :
void
this function has to be called when all steps are added with publishthe add steps method
this function starts the wizard and shows the first step
steps inside the _steps Array are processed in there normal order
|
|
|
|
startup(
) :
void
make all event connects and connect to Switch to Edit Mode topic
Called after a widget and its children have been created and added to the page,
and all related widgets have finished their create() cycle, up through postCreate().
This is useful for composite widgets that need to control or layout sub-widgets.
Many layout widgets can use this as a wiring phase.
|
|
|
|
subscribe(
topic
: String
method
: String|Function
) :
void
Subscribes to the specified topic and calls the specified method
of this object and registers for unsubscribe() on widget destroy.
Provide widget-specific analog to dojo.subscribe, except with the
implicit use of this widget as the target object.
Parameter |
Type |
Usage |
Description |
topic |
String |
required |
|
method |
String|Function |
required |
|
Examples
|
|
|
|
toString(
) :
void
Returns a string that represents the widget
When a widget is cast to a string, this method will be used to generate the
output. Currently, it does not implement any sort of reversible
serialization.
|
|
|
|
translate(
key
: String
vars
: Object
) :
void
Parameter |
Type |
Usage |
Description |
key |
String |
required |
|
vars |
Object |
optional |
|
|
|
|
|
uninitialize(
) :
void
Stub function. Override to implement custom widget tear-down
behavior.
|
|
|
|
unsubscribe(
handle
: Object
) :
void
Unsubscribes handle created by this.subscribe.
Also removes handle from this widget's list of subscriptions
Parameter |
Type |
Usage |
Description |
handle |
Object |
required |
|
|
|
|
|
_activeStep : integer
Detailsindex of current step
|
|
|
|
_attachPoints : Array
|
|
|
|
_attrPairNames : shared
Initial value{}
Detailsbetween all widgets
|
|
|
|
_beingDestroyed : Object
|
|
|
|
_blankGif : String
DetailsPath to a blank 1x1 image.
Used by <img> nodes in templates that really get their image via CSS background-image.
|
|
|
|
_connects : Array
|
|
|
|
_created : Object
|
|
|
|
_defaultChangeAction : string
Initial valueSave
Detailsdefault save action for objects (_objects)
|
|
|
|
_deferredConnects : Object
Initial value{onClick : "", onDblClick : "", onKeyDown : "", onKeyPress : "", onKeyUp : "", onMouseMove : "", onMouseDown : "", onMouseOut : "", onMouseOver : "", onMouseLeave : "", onMouseEnter : "", onMouseUp : "", }
DetailsattributeMap addendum for event handlers that should be connected only on first use
|
|
|
|
_destroyed : Object
|
|
|
|
_hideBubbleTimeout : timeout
|
|
|
|
_initialized : boolean
Detailsyou can not add steps after the wizard is initialized
|
|
|
|
_jsonHandler : epages.io.Json
|
|
|
|
_objects : hash
|
|
|
|
_started : Boolean
Detailsstartup() has completed.
|
|
|
|
_startupWidgets : Object
|
|
|
|
_stepNavigation : array
|
|
|
|
_steps : array
Detailsarray with step data objects
|
|
|
|
_stepStates : array
Initial value["Active", "Disabled", "Done"]
Detailsnavigation states (css classes)
|
|
|
|
_subscribes : Array
|
|
|
|
_supportingWidgets : Object
|
|
|
|
_templateDirectory : String
|
|
|
|
attributeMap : Object
Initial value{id : "", dir : "", lang : "", class : "", style : "", title : "", }
DetailsattributeMap sets up a "binding" between attributes (aka properties)
of the widget and the widget's DOM.
Changes to widget attributes listed in attributeMap will be
reflected into the DOM.
For example, calling attr('title', 'hello')
on a TitlePane will automatically cause the TitlePane's DOM to update
with the new title.
attributeMap is a hash where the key is an attribute of the widget,
|
|
|
|
cancelRedirectURL : string
Detailsthis url is called after clicking the cancel button
|
|
|
|
class : String
DetailsHTML class attribute
|
|
|
|
closable : Boolean
DetailsParameter for children of dijit.layout.StackContainer or subclasses.
True if user can close (destroy) this child, such as (for example) clicking the X on the tab.
|
|
|
|
containerNode : DomNode
Initial valuenull
DetailsDesignates where children of the source DOM node will be placed.
"Children" in this case refers to both DOM nodes and widgets.
|
|
|
|
controllerName : string
Detailsname of controller
|
|
|
|
currentLanguageId : integer
Detailsid of current language
|
|
|
|
debugMode : boolean
Detailsflag to run the wizard in debug mode
|
|
|
|
declaredClass :
|
|
|
|
dir : String
DetailsUnsupported by Dijit, but here for completeness. Dijit only supports setting text direction on the
entire document.
|
|
|
|
dojoAttachEvent : String
|
|
|
|
dojoAttachPoint : String
|
|
|
|
domNode :
DetailsThis is our visible representation of the widget! Other DOM
Nodes may by assigned to other properties, usually through the
template system's dojoAttachPoint syntax, but the domNode
property is the canonical "top level" node in widget UI.
|
|
|
|
finishButtonLabel : string
Detailslabel of finish button node
|
|
|
|
finishRedirectURL : string
Detailsthis url is called after the finish step
|
|
|
|
HIDEBUBBLE_TIMEOUT : integer
Initial value800
Detailsnavigation bubble timeout value in ms
|
|
|
|
iconClass : String
DetailsParameter for children of dijit.layout.StackContainer or subclasses.
CSS Class specifying icon to use in label associated with this pane.
|
|
|
|
id : String
DetailsA unique, opaque ID string that can be assigned by users or by the
system. If the developer passes an ID which is known not to be
unique, the specified ID is ignored and the system-generated ID is
used instead.
|
|
|
|
lang : String
DetailsRarely used. Overrides the default Dojo locale used to render this widget,
|
|
|
|
layoutAlign : String
Details"none", "left", "right", "bottom", "top", and "client".
See the LayoutContainer description for details on this parameter.
|
|
|
|
maxSize : Number
DetailsParameter for children of dijit.layout.BorderContainer .
Specifies a maximum size (in pixels) for this widget when resized by a splitter.
|
|
|
|
minSize : Number
DetailsParameter for children of dijit.layout.BorderContainer .
Specifies a minimum size (in pixels) for this widget when resized by a splitter.
|
|
|
|
nodesWithKeyClick : String[]
Initial value["input", "button"]
DetailsList of nodes that correctly handle click events via native browser support,
and don't need dijit's help
|
|
|
|
params :
|
|
|
|
region : String
DetailsParameter for children of dijit.layout.BorderContainer .
|
|
|
|
saveOnNext : boolean
Detailsflag that indicates weather the wizards saves after every step or not
|
|
|
|
selected : Boolean
DetailsParameter for children of dijit.layout.StackContainer or subclasses.
Specifies that this widget should be the initially displayed pane.
|
|
|
|
showQuickFinish : boolean
Detailsflag that indicates weather the show link to finish page will be displayed or not
|
|
|
|
showTitle : Boolean
DetailsParameter for children of dijit.layout.StackContainer or subclasses.
When true, display title of this widget as tab label etc., rather than just using
icon specified in iconClass
|
|
|
|
sizeMin : Integer
DetailsDeprecated. Parameter for children of dijit.layout.SplitContainer .
Minimum size (width or height) of a child of a SplitContainer.
The value is relative to other children's sizeShare properties.
|
|
|
|
sizeShare : Integer
DetailsDeprecated. Parameter for children of dijit.layout.SplitContainer .
Size (width or height) of a child of a SplitContainer.
The value is relative to other children's sizeShare properties.
For example, if there are two children and each has sizeShare=10, then
each takes up 50% of the available space.
|
|
|
|
splitter : Boolean
DetailsParameter for child of dijit.layout.BorderContainer where region != "center".
If true, enables user to resize the widget by putting a draggable splitter between
this widget and the region=center widget.
|
|
|
|
srcNodeRef : DomNode
Initial valuenull
Detailspointer to original DOM node
|
|
|
|
style : String||Object
DetailsHTML style attributes as cssText string or name/value hash
|
|
|
|
templatePath : Object
|
|
|
|
templateString : Object
|
|
|
|
title : String
DetailsHTML title attribute.
For form widgets this specifies a tooltip to display when hovering over
the widget (just like the native HTML title attribute).
For TitlePane or for when this widget is a child of a TabContainer, AccordionContainer,
etc., it's used to specify the tab label, accordion pane title, etc.
|
|
|
|
tooltip : String
DetailsWhen this widget's title attribute is used to for a tab label, accordion pane title, etc.,
this specifies the tooltip to appear when the mouse is hovered over that text.
|
|
|
|
translation : Object
|
|
|
|
translationName : Object
Initial valuedojo.moduleUrl(("epages.widget", "templates/translation"))
|
|
|
|
url : string
Initial value?
Detailsrequest url
|
|
|
|
waiRole : String
|
|
|
|
waiState : String
|
|
|
|
widgetsInTemplate : Object
|