Deprecated. The UI service was deprecated on December 11, 2014. To create user interfaces, use the HTML service instead.
A panel that lays all of its widgets out in a single vertical column.
Here is an example of how to use this widget:
function doGet() {
var app = UiApp.createApplication();
var panel = app.createVerticalPanel();
panel.add(app.createButton("button 1"));
panel.add(app.createButton("button 2"));
app.add(panel);
return app;
}
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 VerticalPanel documentation here.
Deprecated methods
Method | Return type | Brief description |
---|---|---|
|
| Add a widget to the . |
|
| Sets the dependent style name of this . |
|
| Adds a style name to this . |
|
| Remove all widgets from the . |
| 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. |
|
| Remove the widget with the given index from the . |
|
| Remove the given widget from the . |
|
| Sets the width of the border to be applied to all cells in this panel. |
|
| Sets the height of the cell associated with the given widget, related to the panel as a whole. |
|
| Sets the horizontal alignment of the given widget within its cell. |
|
| Sets the vertical alignment of the given widget within its cell. |
|
| Sets the width of the cell associated with the given widget, related to the panel as a whole. |
|
| Sets the height of this . |
|
| Set the horizontal alignment of widgets added to this . |
|
| Sets the id of this . |
|
| Set the layout for this . |
|
| Sets the size of this in pixels. |
|
| Sets the size of this . |
|
| Sets the amount of spacing between this panel's cells. |
|
| 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 . |
|
| Sets the hover title of this . |
|
| Set the vertical alignment of widgets added to this . |
|
| Sets whether this is visible. |
|
| Sets the width of this . |
Deprecated methods
add(widget)
add(widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a widget to the
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to add. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
addStyleDependentName(styleName)
addStyleDependentName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the dependent style name of this
.
VerticalPanel
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
— the VerticalPanel
itself, useful for chaining.VerticalPanel
addStyleName(styleName)
addStyleName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Adds a style name to this
.
VerticalPanel
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
— the VerticalPanel
itself, useful for chaining.VerticalPanel
clear()
clear()
Deprecated. This function is deprecated and should not be used in new scripts.
Remove all widgets from the
.VerticalPanel
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
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
.VerticalPanel
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
remove(index)
remove(index)
Deprecated. This function is deprecated and should not be used in new scripts.
Remove the widget with the given index from the
. Indexes begin from 0.
This will fail if the index is greater than or equal to the number of elements in the
VerticalPanel
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
index | Integer | the index of the widget to remove. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
remove(widget)
remove(widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Remove the given widget from the
. This will fail if the widget is not
actually a child of the VerticalPanel
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to remove. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setBorderWidth(width)
setBorderWidth(width)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the width of the border to be applied to all cells in this panel.
This is particularly useful when debugging layouts, in that it allows you to see explicitly the cells that contain this panel's children.
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the new border width, in pixels. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setCellHeight(widget, height)
setCellHeight(widget, height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the height of the cell associated with the given widget, related to the panel as a whole.
This will cause an error if used with a widget that is not currently a child of the panel.
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to use in identifying the cell. |
height | String | the height in any valid CSS unit, such as "10px" or "15cm". |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setCellHorizontalAlignment(widget, horizontalAlignment)
setCellHorizontalAlignment(widget, horizontalAlignment)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the horizontal alignment of the given widget within its cell.
This will cause an error if used with a widget that is not currently a child of the panel.
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to align. |
horizontalAlignment |
| the desired alignment, such as UiApp.HorizontalAlignment.CENTER. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setCellVerticalAlignment(widget, verticalAlignment)
setCellVerticalAlignment(widget, verticalAlignment)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the vertical alignment of the given widget within its cell.
This will cause an error if used with a widget that is not currently a child of the panel.
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to align. |
verticalAlignment |
| the desired alignment, such as UiApp.VerticalAlignment.MIDDLE. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setCellWidth(widget, width)
setCellWidth(widget, width)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the width of the cell associated with the given widget, related to the panel as a whole.
This will cause an error if used with a widget that is not currently a child of the panel.
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to use in identifying the cell. |
width | String | the width in any valid CSS unit, such as "10px" or "15cm". |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setHeight(height)
setHeight(height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the height of this
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
height | String | the new height in any CSS unit such as "10px" or "50%". |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setHorizontalAlignment(horizontalAlignment)
setHorizontalAlignment(horizontalAlignment)
Deprecated. This function is deprecated and should not be used in new scripts.
Set the horizontal alignment of widgets added to this
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
horizontalAlignment |
| the desired alignment, such as UiApp.HorizontalAlignment.CENTER. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setId(id)
setId(id)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the id of this
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
id | String | the new id, which can be used to retrieve the from
app.getElementById(id). |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setLayoutData(layout)
setLayoutData(layout)
Deprecated. This function is deprecated and should not be used in new scripts.
Set the layout for this
.
VerticalPanel
This is not currently functional.
Parameters
Name | Type | Description |
---|---|---|
layout | Object |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
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.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the new width in pixels. |
height | Integer | the new height in pixels. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setSize(width, height)
setSize(width, height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the size of this
.VerticalPanel
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
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setSpacing(spacing)
setSpacing(spacing)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the amount of spacing between this panel's cells.
Parameters
Name | Type | Description |
---|---|---|
spacing | Integer | the spacing, in pixels. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
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.
VerticalPanel
// 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
— the VerticalPanel
itself, useful for chaining.VerticalPanel
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.
VerticalPanel
// 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
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setStyleName(styleName)
setStyleName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the style name of this
.
VerticalPanel
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
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setStylePrimaryName(styleName)
setStylePrimaryName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the primary style name of this
.
VerticalPanel
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
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setTag(tag)
setTag(tag)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the text tag of this
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
tag | String | the new text tag, which can be anything you wish to store with the widget. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setTitle(title)
setTitle(title)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the hover title of this
.
VerticalPanel
Not all browsers will show this.
Parameters
Name | Type | Description |
---|---|---|
title | String | the hover title. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setVerticalAlignment(verticalAlignment)
setVerticalAlignment(verticalAlignment)
Deprecated. This function is deprecated and should not be used in new scripts.
Set the vertical alignment of widgets added to this
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
verticalAlignment |
| the desired alignment, such as UiApp.VerticalAlignment.MIDDLE. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setVisible(visible)
setVisible(visible)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets whether this
is visible.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
visible | Boolean | whether this should be visible or not. |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel
setWidth(width)
setWidth(width)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the width of this
.VerticalPanel
Parameters
Name | Type | Description |
---|---|---|
width | String | the new width in any CSS unit such as "10px" or "50%". |
Return
— the VerticalPanel
itself, useful for chaining.VerticalPanel