AW.Format in controls, not in Grid
Hey there, I found lots of info about formats in grid, but never for controls...
I want to reproduce :
Like :
Any ideas?
I want to reproduce :
var obj = new AW.UI.Grid;
obj.setCellText(data);
obj.setColumnCount(2);
obj.setRowCount(3);
var number = new AW.Formats.Number;
obj.setCellFormat(number, 1);
document.write(obj);
Like :
var obj = new AW.UI.Input;
var number = new AW.Formats.Number;
obj.setCellFormat(number);//DOESN'T WORK
obj.setFormat(number);//DOESN'T WORK
document.write(obj);
Any ideas?
Jean Michel (Paris)
January 15,