How to get/set cell value inside of Template?
Example:
Any help? tkz.
My.Templates.T1 = AW.Templates.Text.subclass();
My.Templates.T1.create = function() {
var obj = this.prototype;
var editor = AW.HTML.INPUT;
editor.setClass("templates", "input");
editor.setClass("type", "text");
editor.setAttribute("readonly", "yes");
// now i want get the cell value and set into editor
editor.setAttribute("value", /*HERE, CELL VALUE/TEXT*/);
obj.element().innerHTML = editor;
}
My.Templates.T1.create();
Any help? tkz.
pc
April 12,