Sets or retrieves the text in the grid row selector (selector text). Does not encode the html controls characters (<, >, ", &) - the text containing correct html markup will be displayed as html.
var value = obj.getSelectorText();
obj.setSelectorText(value);
obj.onSelectorTextChanging = function(value){...};
obj.onSelectorTextChanged = function(value){...};
obj.onSelectorTextError = function(value){...};
obj.setSelectorText("selector text"); // selector text
obj.setSelectorImage("favorites");
obj.setSelectorTooltip("tooltip text");
Use row position property to display numbers in the row selector.
obj.setSelectorText(function(i){return this.getRowPosition(i)+1});
When some of the html controls characters (<
, >
, "
, &
) should appear as text - convert them into html entity codes (<
, >
, "
, &
).
Grid templates: selector
Selector model: image, tooltip, link, value, data, format
Text properties: cell, header, footer, top, bottom