Contains the properties (text, image, tooltip etc.) of the bottom-left corner of the grid control (bottom selector).
var value = obj.getBottomProperty(name); // Retrieve property by name
obj.setBottomProperty(name, value); // Assign property value
obj.defineBottomProperty(name, value); // Define new property
var external = obj.getBottomModel(); // Get reference to external model
obj.setBottomModel(external); // Assign external model
obj.clearBottomModel(); // Clear/reset all properties
data | Bottom selector data. |
format | Bottom selector formatting object. |
image | Bottom selector image. |
link | Bottom selector hyperlink URL. |
state | Bottom selector state. |
text | Bottom selector text. |
tooltip | Bottom selector tooltip. |
value | Bottom selector value. |
var obj = new AW.UI.Grid;
obj.setFooterVisible(true);
obj.setSelectorVisible(true);
obj.setSelectorWidth(100);
obj.setBottomText("bottom text");
obj.setBottomImage("favorites");
obj.setBottomTooltip("tooltip text");
document.write(obj);
Grid templates: bottom selector
Related models: footer, selector, top