Deprecated. The UI service was deprecated on December 11, 2014. To create user interfaces, use the HTML service instead.
A panel that wraps its contents in a scrollable element.
Note that this panel can contain at most one direct child widget. To add more children, make the child of this panel a different panel that can contain more than one child.
Here is an example of how to use this widget:
function doGet() {
var app = UiApp.createApplication();
// Create some long content.
var vertical = app.createVerticalPanel();
for (var i = 0; i < 100; ++i) {
vertical.add(app.createButton("button " + i));
}
var scroll = app.createScrollPanel().setPixelSize(100, 100);
scroll.add(vertical);
app.add(scroll);
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 ScrollPanel documentation here.
Deprecated methods
Deprecated methods
add(widget)
add(widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a widget to the
.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to add. |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
addScrollHandler(handler)
addScrollHandler(handler)
Deprecated. This function is deprecated and should not be used in new scripts.
Add a handler for scroll events.
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 label = app.createLabel("some label").setHeight("500px");
var scroll = app.createScrollPanel(label).setHeight("200px");
var handler = app.createServerHandler("handlerFunction");
scroll.addScrollHandler(handler);
app.add(scroll);
return app;
}
function handlerFunction(eventInfo) {
var parameter = eventInfo.parameter;
// the type of event, in this case "scroll".
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.
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
— the ScrollPanel
itself, useful for chaining.ScrollPanel
addStyleDependentName(styleName)
addStyleDependentName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the dependent style name of this
.
ScrollPanel
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 ScrollPanel
itself, useful for chaining.ScrollPanel
addStyleName(styleName)
addStyleName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Adds a style name to this
.
ScrollPanel
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 ScrollPanel
itself, useful for chaining.ScrollPanel
clear()
clear()
Deprecated. This function is deprecated and should not be used in new scripts.
Remove all widgets from the
.ScrollPanel
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
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
.ScrollPanel
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
setAlwaysShowScrollBars(alwaysShow)
setAlwaysShowScrollBars(alwaysShow)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets whether to always show scrollbars even if they are not needed.
Parameters
Name | Type | Description |
---|---|---|
alwaysShow | Boolean | whether to always show scrollbars |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setHeight(height)
setHeight(height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the height of this
.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
height | String | the new height in any CSS unit such as "10px" or "50%". |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setHorizontalScrollPosition(position)
setHorizontalScrollPosition(position)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the horizontal scroll position of this
.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
position | Integer | the new horizontal scroll position, in pixels. |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setId(id)
setId(id)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the id of this
.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
id | String | the new id, which can be used to retrieve the from
app.getElementById(id). |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setLayoutData(layout)
setLayoutData(layout)
Deprecated. This function is deprecated and should not be used in new scripts.
Set the layout for this
.
ScrollPanel
This is not currently functional.
Parameters
Name | Type | Description |
---|---|---|
layout | Object |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
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.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the new width in pixels. |
height | Integer | the new height in pixels. |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setScrollPosition(position)
setScrollPosition(position)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the vertical scroll position of this
.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
position | Integer | the new vertical scroll position, in pixels. |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setSize(width, height)
setSize(width, height)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the size of this
.ScrollPanel
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 ScrollPanel
itself, useful for chaining.ScrollPanel
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.
ScrollPanel
// 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 ScrollPanel
itself, useful for chaining.ScrollPanel
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.
ScrollPanel
// 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 ScrollPanel
itself, useful for chaining.ScrollPanel
setStyleName(styleName)
setStyleName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the style name of this
.
ScrollPanel
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 ScrollPanel
itself, useful for chaining.ScrollPanel
setStylePrimaryName(styleName)
setStylePrimaryName(styleName)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the primary style name of this
.
ScrollPanel
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 ScrollPanel
itself, useful for chaining.ScrollPanel
setTag(tag)
setTag(tag)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the text tag of this
.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
tag | String | the new text tag, which can be anything you wish to store with the widget. |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setTitle(title)
setTitle(title)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the hover title of this
.
ScrollPanel
Not all browsers will show this.
Parameters
Name | Type | Description |
---|---|---|
title | String | the hover title. |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setVisible(visible)
setVisible(visible)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets whether this
is visible.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
visible | Boolean | whether this should be visible or not. |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setWidget(widget)
setWidget(widget)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the widget inside this
, removing anything previously there.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
widget |
| the widget to put in this . |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel
setWidth(width)
setWidth(width)
Deprecated. This function is deprecated and should not be used in new scripts.
Sets the width of this
.ScrollPanel
Parameters
Name | Type | Description |
---|---|---|
width | String | the new width in any CSS unit such as "10px" or "50%". |
Return
— the ScrollPanel
itself, useful for chaining.ScrollPanel