Placing Buttons in a grid
Hi All,
Any one could help me out in this problem. I want to set buttons in an entire column of a grid. The following is the piece of code which iam using to set buttons in a grid.
Var objGrid=new AW.UI.Grid;
Var objButton=new AW.UI.Button;
objButton.onClick=function(event){
alert("Clicked");
};
objGrid.setCellTemplate(objButton,0);
objGrid.setColumnCount(2);
objGrid.setRowCount(10);
document.write(objGrid);
Any one could help me out in this problem. I want to set buttons in an entire column of a grid. The following is the piece of code which iam using to set buttons in a grid.
Var objGrid=new AW.UI.Grid;
Var objButton=new AW.UI.Button;
objButton.onClick=function(event){
alert("Clicked");
};
objGrid.setCellTemplate(objButton,0);
objGrid.setColumnCount(2);
objGrid.setRowCount(10);
document.write(objGrid);
Narayana
December 11,