Deprecated. The UI service was deprecated on December 11, 2014. To create user interfaces, use the HTML service instead.
A flexible table that creates cells on demand. It can be jagged (that is, each row can contain a different number of cells) and individual cells can be set to span multiple rows or columns.
Here is an example of how to use this widget:
function doGet() {
var app = UiApp.createApplication();
app.add(app.createFlexTable()
.insertRow(0).insertRow(0).insertRow(0)
.insertCell(0, 0)
.insertCell(0, 1)
.insertCell(0, 2)
.insertCell(1, 0)
.insertCell(1, 1)
.insertCell(2, 0)
.setBorderWidth(5).setCellPadding(10).setCellSpacing(10));
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 FlexTable documentation here.
Deprecated methods
Deprecated methods
addCell(row)
addCell(row)
Deprecated. This function is deprecated and should not be used in new scripts.
Appends a cell to the specified row.
This will cause an error if the row does not exist.
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row to which the new cell will be added. |
Return
addClickHandler(handler)
addClickHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for click 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.addClickHandler(handler);
app.add(button);
return app;
}
function handlerFunction(eventInfo) {
var parameter = eventInfo.parameter;
// the type of event, in this case "click".
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
addStyleDependentName(styleName)
addStyleDependentName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the dependent style name of this
.
FlexTable
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
.
FlexTable
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.
Remove all widgets from the
.FlexTable
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
.FlexTable
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
insertCell(beforeRow, beforeColumn)
insertCell(beforeRow, beforeColumn)
Deprecated. This function is deprecated and should not be used in new scripts.
Inserts a cell into the
.
FlexTable
This will cause an error if either the row or column do not exist.
Parameters
Name | Type | Description |
---|---|---|
beforeRow | Integer | the row before which the new cell will be added. |
beforeColumn | Integer | the column before which the new cell will be added. |
Return
insertRow(beforeRow)
insertRow(beforeRow)
Deprecated. This function is deprecated and should not be used in new scripts.
Inserts a row into the
before the given row.
FlexTable
This will cause an error if the row does not exist.
Parameters
Name | Type | Description |
---|---|---|
beforeRow | Integer | the row before which the new row will be added. |
Return
removeCell(row, column)
removeCell(row, column)
Deprecated. This function is deprecated and should not be used in new scripts.
Removes the specified cell from the
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row of the cell to remove. |
column | Integer | the column of the cell to remove. |
Return
removeCells(row, column, num)
removeCells(row, column, num)
Deprecated. This function is deprecated and should not be used in new scripts.
Removes a number of cells from one row in the
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row of the cells to be removed. |
column | Integer | the column of the first cell to be removed. |
num | Integer | the number of cells to be removed. |
Return
removeRow(row)
removeRow(row)
Deprecated. This function is deprecated and should not be used in new scripts.
Removes the specified row from the
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row to be removed. |
Return
setBorderWidth(width)
setBorderWidth(width)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the border width.
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the border width, in pixels. |
Return
setCellPadding(padding)
setCellPadding(padding)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the padding within cells.
Parameters
Name | Type | Description |
---|---|---|
padding | Integer | the padding, in pixels. |
Return
setCellSpacing(spacing)
setCellSpacing(spacing)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the spacing between cells.
Parameters
Name | Type | Description |
---|---|---|
spacing | Integer | the spacing, in pixels. |
Return
setColumnStyleAttribute(column, attribute, value)
setColumnStyleAttribute(column, attribute, value)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets a CSS style on a column of this
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
column | Integer | the column number. |
attribute | String | the CSS attribute, in camelCase. ("fontSize", not "font-size"). |
value | String | the CSS value |
Return
setColumnStyleAttributes(column, attributes)
setColumnStyleAttributes(column, attributes)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets a CSS style on a column of this
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
column | Integer | the column number. |
attributes | Object | the CSS attributes and values to set. |
Return
setHeight(height)
setHeight(height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the height of this
.FlexTable
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
.FlexTable
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
.
FlexTable
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.FlexTable
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the new width in pixels. |
height | Integer | the new height in pixels. |
Return
setRowStyleAttribute(row, attribute, value)
setRowStyleAttribute(row, attribute, value)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets a CSS style on a row of this
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row number. |
attribute | String | the CSS attribute, in camelCase. ("fontSize", not "font-size"). |
value | String | the CSS value |
Return
setRowStyleAttributes(row, attributes)
setRowStyleAttributes(row, attributes)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets a CSS style on a row of this
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row number. |
attributes | Object | the CSS attributes and values to set. |
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
.FlexTable
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(row, column, attribute, value)
setStyleAttribute(row, column, attribute, value)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets a CSS style on a cell of this
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row of the cell. |
column | Integer | the column of the cell. |
attribute | String | the CSS attribute, in camelCase. ("fontSize", not "font-size"). |
value | String | the CSS value |
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.
FlexTable
// 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(row, column, attributes)
setStyleAttributes(row, column, attributes)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets a CSS style on a cell of this
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row of the cell. |
column | Integer | the column of the cell. |
attributes | Object | the CSS attributes and values to set. |
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.
FlexTable
// 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
.
FlexTable
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
.
FlexTable
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
.FlexTable
Parameters
Name | Type | Description |
---|---|---|
tag | String | the new text tag, which can be anything you wish to store with the widget. |
Return
setText(row, column, text)
setText(row, column, text)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the contents of a given cell to the given text. This will remove any widget in the cell if one was there.
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row of the cell. |
column | Integer | the column of the cell. |
text | String | the text to insert. |
Return
setTitle(title)
setTitle(title)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the hover title of this
.
FlexTable
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.FlexTable
Parameters
Name | Type | Description |
---|---|---|
visible | Boolean | whether this should be visible or not. |
Return
setWidget(row, column, widget)
setWidget(row, column, widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the widget in a given cell. A cell can contain at most one widget.
Parameters
Name | Type | Description |
---|---|---|
row | Integer | the row of the cell. |
column | Integer | the column of the cell. |
widget |
| the widget to insert. |