Deprecated. The UI service was deprecated on December 11, 2014. To create user interfaces, use the HTML service instead.
A standard hierarchical tree widget. The tree contains a hierarchy of
s that the
user can open, close, and select.
TreeItem
Internally, UiApp widgets are built on top of the Google Web Toolkit, and it can sometimes be helpful to look at the GWT documentation directly. You can find the Tree documentation here.
Deprecated methods
Method | Return type | Brief description |
---|---|---|
|
| Add a widget to the . |
|
| Add a handler for blur events (losing keyboard focus). |
|
| Add a handler for close events. |
|
| Add a handler for focus events (gaining keyboard focus). |
|
| Adds a new child tree item containing the specified HTML. |
|
| Adds a TreeItem as a child to this . |
|
| Adds a new child tree item containing the specified widget. |
|
| Add a handler for key down events. |
|
| Add a handler for key press events. |
|
| Add a handler for key up events. |
|
| Add a handler for mouse down events. |
|
| Add a handler for mouse move events. |
|
| Add a handler for mouse out events. |
|
| Add a handler for mouse move events. |
|
| Add a handler for mouse up events. |
|
| Add a handler for mouse wheel events. |
|
| Add a handler for open events. |
|
| Add a handler for selection events. |
|
| Sets the dependent style name of this . |
|
| Adds a style name to this . |
|
| Removes all children. |
| String | Returns the id that has been assigned to this object. |
| String | Gets the text tag of this . |
| String | Gets the type of this object. |
|
| Sets the widget's 'access key'. |
|
| Sets whether opening and closing the is animated. |
|
| Explicitly focus/unfocus this . |
|
| Sets the height of this . |
|
| Sets the id of this . |
|
| Set the layout for this . |
|
| Sets the size of this in pixels. |
|
| Selects the given item. |
|
| Selects the given item and optionally fire events. |
|
| Sets the size of this . |
|
| Sets one of this 's style attributes to a new value. |
|
| Sets this 's style attributes. |
|
| Sets the style name of this . |
|
| Sets the primary style name of this . |
|
| Sets the 's position in the tab index. |
|
| Sets the text tag of this . |
|
| Sets the hover title of this . |
|
| Sets whether this is visible. |
|
| Sets the width of this . |
Deprecated methods
add(widget)
add(widget)
addBlurHandler(handler)
addBlurHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for blur events (losing keyboard focus).
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addBlurHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "blur". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addCloseHandler(handler)
addCloseHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for close events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var item1 = app.createTreeItem("item1"); item1.addItem(app.createTreeItem("item2")); var tree = app.createTree(); tree.addItem(item1); var handler = app.createServerHandler("handlerFunction"); tree.addCloseHandler(handler) app.add(tree); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "close". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; }In addition, the values of certain widgets can be sent up with the event as well as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addFocusHandler(handler)
addFocusHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for focus events (gaining keyboard focus).
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addFocusHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "focus". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addItem(text)
addItem(text)
addItem(item)
addItem(item)
addItem(widget)
addItem(widget)
addKeyDownHandler(handler)
addKeyDownHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for key down events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addKeyDownHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "keydown". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // what key was pressed. See below for a link explaining what these values mean. var charCode = parameter.charCode; var keyCode = parameter.keyCode; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.
For an explanation of charCode and keyCode, including what to expect on different browsers, look here.
Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addKeyPressHandler(handler)
addKeyPressHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for key press events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addKeyPressHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "keypress". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // what key was pressed. See below for a link explaining what these values mean. var charCode = parameter.charCode; var keyCode = parameter.keyCode; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.
For an explanation of charCode and keyCode, including what to expect on different browsers, look here.
Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addKeyUpHandler(handler)
addKeyUpHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for key up events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addKeyUpHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "keyup". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // what key was pressed. See below for a link explaining what these values mean. var charCode = parameter.charCode; var keyCode = parameter.keyCode; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.
For an explanation of charCode and keyCode, including what to expect on different browsers, look here.
Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addMouseDownHandler(handler)
addMouseDownHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for mouse down events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addMouseDownHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "mousedown". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // mouse x and y position relative to the widget that fired the event. var x = parameter.x; var y = parameter.y; // mouse x and y position within the browser window's client area. var clientX = parameter.clientX; var clientY = parameter.clientY; // mouse x and y position within the user's display. var screenX = parameter.screenX; var screenY = parameter.screenY; // the mouse button used. Left is 1, right is 2, and middle is 4. var button = parameter.button; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addMouseMoveHandler(handler)
addMouseMoveHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for mouse move events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addMouseMoveHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "mousemove". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // mouse x and y position relative to the widget that fired the event. var x = parameter.x; var y = parameter.y; // mouse x and y position within the browser window's client area. var clientX = parameter.clientX; var clientY = parameter.clientY; // mouse x and y position within the user's display. var screenX = parameter.screenX; var screenY = parameter.screenY; // the mouse button used. Left is 1, right is 2, and middle is 4. var button = parameter.button; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addMouseOutHandler(handler)
addMouseOutHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for mouse out events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addMouseOutHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "mouseout". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // mouse x and y position relative to the widget that fired the event. var x = parameter.x; var y = parameter.y; // mouse x and y position within the browser window's client area. var clientX = parameter.clientX; var clientY = parameter.clientY; // mouse x and y position within the user's display. var screenX = parameter.screenX; var screenY = parameter.screenY; // the mouse button used. Left is 1, right is 2, and middle is 4. var button = parameter.button; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addMouseOverHandler(handler)
addMouseOverHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for mouse move events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addMouseOverHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "mousover". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // mouse x and y position relative to the widget that fired the event. var x = parameter.x; var y = parameter.y; // mouse x and y position within the browser window's client area. var clientX = parameter.clientX; var clientY = parameter.clientY; // mouse x and y position within the user's display. var screenX = parameter.screenX; var screenY = parameter.screenY; // the mouse button used. Left is 1, right is 2, and middle is 4. var button = parameter.button; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addMouseUpHandler(handler)
addMouseUpHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for mouse up events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addMouseUpHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "mouseup". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // mouse x and y position relative to the widget that fired the event. var x = parameter.x; var y = parameter.y; // mouse x and y position within the browser window's client area. var clientX = parameter.clientX; var clientY = parameter.clientY; // mouse x and y position within the user's display. var screenX = parameter.screenX; var screenY = parameter.screenY; // the mouse button used. Left is 1, right is 2, and middle is 4. var button = parameter.button; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addMouseWheelHandler(handler)
addMouseWheelHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for mouse wheel events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var button = app.createButton("a button"); var handler = app.createServerHandler("handlerFunction"); button.addMouseWheelHandler(handler); app.add(button); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "mousewheel". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; // mouse x and y position relative to the widget that fired the event. var x = parameter.x; var y = parameter.y; // mouse x and y position within the browser window's client area. var clientX = parameter.clientX; var clientY = parameter.clientY; // mouse x and y position within the user's display. var screenX = parameter.screenX; var screenY = parameter.screenY; // the mouse button used. Left is 1, right is 2, and middle is 4. var button = parameter.button; // whether the various modifier keys were also pressed (true or false) var shift = parameter.shift; var alt = parameter.alt; var ctrl = parameter.ctrl; var meta = parameter.meta; }In addition, the values of certain widgets can be sent up with the event as well, as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addOpenHandler(handler)
addOpenHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for open events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var item1 = app.createTreeItem("item1"); item1.addItem(app.createTreeItem("item2")); var tree = app.createTree(); tree.addItem(item1); var handler = app.createServerHandler("handlerFunction"); tree.addOpenHandler(handler) app.add(tree); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "close". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; }In addition, the values of certain widgets can be sent up with the event as well as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addSelectionHandler(handler)
addSelectionHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for selection events.
Note that you can have multiple handlers for the same event on the same widget. They will be
called in the order that they were added to the widget, although
s may appear to happen
simultaneously.
ServerHandler
The handler passes back some information to the server about what happened. This information can be accessed as follows:
function doGet() { var app = UiApp.createApplication(); var item1 = app.createTreeItem("item1"); item1.addItem(app.createTreeItem("item2")); var tree = app.createTree(); tree.addItem(item1); var handler = app.createServerHandler("handlerFunction"); tree.addSelectionHandler(handler) app.add(tree); return app; } function handlerFunction(eventInfo) { var parameter = eventInfo.parameter; // the type of event, in this case "selection". var eventType = parameter.eventType; // the id of the widget that fired this event. var source = parameter.source; }In addition, the values of certain widgets can be sent up with the event as well as "callback elements." See the documentation of
ServerHandler
for more information.Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to execute when the event occurs. This can be a or a . |
Return
addStyleDependentName(styleName)
addStyleDependentName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the dependent style name of this
.
Tree
This is useful for debugging but is otherwise of minimal use since there is no way to use custom stylesheets in UiApp.
Parameters
Name | Type | Description |
---|---|---|
styleName | String | the new style name. |
Return
addStyleName(styleName)
addStyleName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Adds a style name to this
.
Tree
This is useful for debugging but is otherwise of minimal use since there is no way to use custom stylesheets in UiApp.
Parameters
Name | Type | Description |
---|---|---|
styleName | String | the new style name. |
Return
clear()
clear()
getId()
getId()
Deprecated. This function is deprecated and should not be used in new scripts.
Returns the id that has been assigned to this object.
This can be used in conjunction with app.getElementById() to retrieve a reference to this object.
Return
String
— the id that has been assigned to this object
getTag()
getTag()
Deprecated. This function is deprecated and should not be used in new scripts.
Gets the text tag of this
.Tree
Return
String
— the text tag.
getType()
getType()
Deprecated. This function is deprecated and should not be used in new scripts.
Gets the type of this object.
Return
String
— the object type
setAccessKey(accessKey)
setAccessKey(accessKey)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the widget's 'access key'. This key is used (in conjunction with a browser-specific modifier key) to automatically focus the widget.
Parameters
Name | Type | Description |
---|---|---|
accessKey | Char | the character to use for focus |
Return
setAnimationEnabled(animationEnabled)
setAnimationEnabled(animationEnabled)
setFocus(focus)
setFocus(focus)
Deprecated. This function is deprecated and should not be used in new scripts.
Explicitly focus/unfocus this
.
Tree
Only one widget can have focus at a time, and the widget that does will receive all keyboard events.
Parameters
Name | Type | Description |
---|---|---|
focus | Boolean | whether the should have the current focus. |
Return
setHeight(height)
setHeight(height)
setId(id)
setId(id)
setLayoutData(layout)
setLayoutData(layout)
setPixelSize(width, height)
setPixelSize(width, height)
setSelectedItem(item)
setSelectedItem(item)
setSelectedItem(item, fireEvents)
setSelectedItem(item, fireEvents)
setSize(width, height)
setSize(width, height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the size of this
.Tree
Parameters
Name | Type | Description |
---|---|---|
width | String | the new width in any CSS unit such as "10px" or "50%". |
height | String | the new height in any CSS unit such as "10px" or "50%". |
Return
setStyleAttribute(attribute, value)
setStyleAttribute(attribute, value)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets one of this
's style attributes to a new value. Valid attributes are listed here; the values for each attribute are the
same as those available in CSS style sheets.
Tree
// Change the widget's background to black and text color to green. widget.setStyleAttribute("background", "black") .setStyleAttribute("color", "green");
Parameters
Name | Type | Description |
---|---|---|
attribute | String | the CSS attribute, in camel-case ("fontSize", not "font-size"), as listed here |
value | String | the CSS value |
Return
setStyleAttributes(attributes)
setStyleAttributes(attributes)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets this
's style attributes. This is a convenience method that is equivalent
to calling setStyleAttribute with every key/value pair in the attributes object. Valid
attributes are listed here; the values for each
attribute are the same as those available in CSS style sheets.
Tree
// Change the widget's background to black and text color to green. widget.setStyleAttributes({background: "black", color: "green"});
Parameters
Name | Type | Description |
---|---|---|
attributes | Object | an object of key/value pairs for the CSS attributes and values to set; valid attributes are listed here |
Return
setStyleName(styleName)
setStyleName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the style name of this
.
Tree
This is useful for debugging but is otherwise of minimal use since there is no way to use custom stylesheets in UiApp.
Parameters
Name | Type | Description |
---|---|---|
styleName | String | the new style name. |
Return
setStylePrimaryName(styleName)
setStylePrimaryName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the primary style name of this
.
Tree
This is useful for debugging but is otherwise of minimal use since there is no way to use custom stylesheets in UiApp.
Parameters
Name | Type | Description |
---|---|---|
styleName | String | the new style name. |
Return
setTabIndex(index)
setTabIndex(index)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the
's position in the tab index.
Tree
If more than one widget has the same tab index, each such widget will receive focus in an arbitrary order. Setting the tab index to -1 will cause this widget to be removed from the tab order.
Parameters
Name | Type | Description |
---|---|---|
index | Integer | the new tab index. |
Return
setTag(tag)
setTag(tag)
setTitle(title)
setTitle(title)
setVisible(visible)
setVisible(visible)