how getValue cellformat input html in UI.Grid?
grid = new AW.UI.Grid;
grid.setId("grid");
grid.setCellFormat([str, str, html, str, str, str, str, str]);
data[i] = [
table.getData(0,i)
, table.getData(1,i)
, "<input id='pwd_input' name='pwd_input' type='password'>"
];
...in this
how get inputbox 'pwd_input' 's value?
grid.setId("grid");
grid.setCellFormat([str, str, html, str, str, str, str, str]);
data[i] = [
table.getData(0,i)
, table.getData(1,i)
, "<input id='pwd_input' name='pwd_input' type='password'>"
];
...in this
how get inputbox 'pwd_input' 's value?
taejoon.jang
February 25,