Deprecated. The UI service was deprecated on December 11, 2014. To create user interfaces, use the HTML service instead.
A horizontal bar of folder-style tabs, most commonly used as part of a
.
TabPanel
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 TabBar documentation here.
Deprecated methods
Method | Return type | Brief description |
---|---|---|
|
| Add a handler that fires before the selection occurs. |
|
| Add a handler for selection events. |
|
| Sets the dependent style name of this . |
|
| Adds a style name to this . |
|
| Add a tab with the given title. |
|
| Add a tab with the given title. |
|
| Add a tab with the given widget as its title. |
| 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. |
|
| Select a tab by index. |
|
| Sets the height of this . |
|
| Sets the id of this . |
|
| Set the layout for this . |
|
| Sets the size of this in pixels. |
|
| 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 . |
|
| Set whether the given tab is enabled. |
|
| Set the header text of a given tab. |
|
| Sets the text tag of this . |
|
| Sets the hover title of this . |
|
| Sets whether this is visible. |
|
| Sets the width of this . |
Deprecated methods
addBeforeSelectionHandler(handler)
addBeforeSelectionHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler that fires before the selection occurs.
This is deprecated in favor of addSelectionHandler, because there is no way to cancel the selection so they are functionally identical.
Parameters
Name | Type | Description |
---|---|---|
handler |
| the handler to invoke. |
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
.
TabBar
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
.
TabBar
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
addTab(title)
addTab(title)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a tab with the given title.
Parameters
Name | Type | Description |
---|---|---|
title | String | the new tab's title. |
Return
addTab(title, asHtml)
addTab(title, asHtml)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a tab with the given title.
Parameters
Name | Type | Description |
---|---|---|
title | String | the new tab's title. |
asHtml | Boolean | whether to treat the title as HTML. |
Return
addTab(widget)
addTab(widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a tab with the given widget as its title.
Parameters
Name | Type | Description |
---|---|---|
widget |
| the new tab's title widget. |
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
.TabBar
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
selectTab(index)
selectTab(index)
Deprecated. This function is deprecated and should not be used in new scripts.
Select a tab by index.
Parameters
Name | Type | Description |
---|---|---|
index | Integer | the index of the tab to select. |
Return
setHeight(height)
setHeight(height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the height of this
.TabBar
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
.TabBar
Parameters
Name | Type | Description |
---|---|---|
id | String | the new id, which can be used to retrieve the from
app.getElementById(id). |
Return
setLayoutData(layout)
setLayoutData(layout)
Deprecated. This function is deprecated and should not be used in new scripts.
Set the layout for this
.
TabBar
This is not currently functional.
Parameters
Name | Type | Description |
---|---|---|
layout | Object |
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.TabBar
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the new width in pixels. |
height | Integer | the new height in pixels. |
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
.TabBar
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.
TabBar
// 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.
TabBar
// 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
.
TabBar
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
.
TabBar
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
setTabEnabled(index, enabled)
setTabEnabled(index, enabled)
Deprecated. This function is deprecated and should not be used in new scripts.
Set whether the given tab is enabled.
Parameters
Name | Type | Description |
---|---|---|
index | Integer | the tab index. |
enabled | Boolean | whether the tab should be enabled. |
Return
setTabText(index, text)
setTabText(index, text)
Deprecated. This function is deprecated and should not be used in new scripts.
Set the header text of a given tab.
Parameters
Name | Type | Description |
---|---|---|
index | Integer | the index of the tab. |
text | String | the new header text. |
Return
setTag(tag)
setTag(tag)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the text tag of this
.TabBar
Parameters
Name | Type | Description |
---|---|---|
tag | String | the new text tag, which can be anything you wish to store with the widget. |
Return
setTitle(title)
setTitle(title)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the hover title of this
.
TabBar
Not all browsers will show this.
Parameters
Name | Type | Description |
---|---|---|
title | String | the hover title. |
Return
setVisible(visible)
setVisible(visible)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets whether this
is visible.TabBar
Parameters
Name | Type | Description |
---|---|---|
visible | Boolean | whether this should be visible or not. |