Deprecated. The UI service was deprecated on December 11, 2014. To create user interfaces, use the HTML service instead.
An item that can be contained within a
.
Tree
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 TreeItem documentation here.
Deprecated methods
Method | Return type | Brief description |
---|---|---|
|
| 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. |
|
| 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 HTML content of this . |
|
| Sets the height of this . |
|
| Sets the id of this . |
|
| Sets the size of this in pixels. |
|
| Set whether this item is selected. |
|
| Sets the size of this . |
|
| Sets whether this is open or closed. |
|
| Sets whether this is open or closed and optionally fire events. |
|
| 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 text tag of this . |
|
| Set the display text of this . |
|
| Sets the hover title of this . |
|
| A deprecated function that has no effect. |
|
| Sets whether this is visible. |
|
| Sets the widget to be shown inside this . |
|
| Sets the width of this . |
Deprecated methods
addItem(text)
addItem(text)
Deprecated. This function is deprecated and should not be used in new scripts.
Adds a new child tree item containing the specified HTML.
Parameters
Name | Type | Description |
---|---|---|
text | String | the new item's text, treated as HTML. |
Return
addItem(item)
addItem(item)
Deprecated. This function is deprecated and should not be used in new scripts.
Adds a TreeItem as a child to this
.TreeItem
Parameters
Name | Type | Description |
---|---|---|
item | TreeItem | the child item. |
Return
addItem(widget)
addItem(widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Adds a new child tree item containing the specified widget.
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to put inside the new item. |
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
.
TreeItem
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
.
TreeItem
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()
Deprecated. This function is deprecated and should not be used in new scripts.
Removes all children.
Return
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
.TreeItem
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
setHTML(html)
setHTML(html)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the HTML content of this
.TreeItem
Parameters
Name | Type | Description |
---|---|---|
html | String | the new HTML |
Return
setHeight(height)
setHeight(height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the height of this
.TreeItem
Parameters
Name | Type | Description |
---|---|---|
height | String | the new height in any CSS unit such as "10px" or "50%". |
Return
setId(id)
setId(id)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the id of this
.TreeItem
Parameters
Name | Type | Description |
---|---|---|
id | String | the new id, which can be used to retrieve the from
app.getElementById(id). |
Return
setPixelSize(width, height)
setPixelSize(width, height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the size of this
in pixels.TreeItem
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the new width in pixels. |
height | Integer | the new height in pixels. |
Return
setSelected(selected)
setSelected(selected)
Deprecated. This function is deprecated and should not be used in new scripts.
Set whether this item is selected.
Parameters
Name | Type | Description |
---|---|---|
selected | Boolean | whether this item is selected. |
Return
setSize(width, height)
setSize(width, height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the size of this
.TreeItem
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
setState(open)
setState(open)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets whether this
is open or closed.
TreeItem
This does not fire events if the state changes.
Parameters
Name | Type | Description |
---|---|---|
open | Boolean | whether it's open or closed. |
Return
setState(open, fireEvents)
setState(open, fireEvents)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets whether this
is open or closed and optionally fire events.
TreeItem
This does not fire events if the state changes.
Parameters
Name | Type | Description |
---|---|---|
open | Boolean | whether it's open or closed. |
fireEvents | Boolean | whether to fire events if the state changes. |
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.
TreeItem
// 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.
TreeItem
// 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
.
TreeItem
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
.
TreeItem
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
setTag(tag)
setTag(tag)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the text tag of this
.TreeItem
Parameters
Name | Type | Description |
---|---|---|
tag | String | the new text tag, which can be anything you wish to store with the widget. |
Return
setText(text)
setText(text)
Deprecated. This function is deprecated and should not be used in new scripts.
Set the display text of this
.TreeItem
Parameters
Name | Type | Description |
---|---|---|
text | String | the new text. |
Return
setTitle(title)
setTitle(title)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the hover title of this
.
TreeItem
Not all browsers will show this.
Parameters
Name | Type | Description |
---|---|---|
title | String | the hover title. |
Return
setUserObject(a)
setUserObject(a)
Deprecated. This function is deprecated and should not be used in new scripts.
A deprecated function that has no effect.
Parameters
Name | Type | Description |
---|---|---|
a | Object |
Return
setVisible(visible)
setVisible(visible)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets whether this
is visible.TreeItem
Parameters
Name | Type | Description |
---|---|---|
visible | Boolean | whether this should be visible or not. |
Return
setWidget(widget)
setWidget(widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the widget to be shown inside this
.TreeItem
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to put inside this . |