:: Forum >> Version 2 >>

Combo Grid in a Grid Cell(s)

Hi all,

If you have successfully added a combo control to a grid cell(s), I'll
like to hear from you. (There is a good deal of waffle on the subject
but nothing concrete: I have tried some of the ideas but none seem to
work reliably.)

Thanks

J Mansons
Jack Mansons
Monday, May 15, 2006
Did you try this one -

var data1 = ["Email","Phone","FedEX","USPS"];

    var 
list1 = new AW.UI.List;
    
list1.setItemText(data1);
    
list1.setItemCount(data1.length);

    var 
obj = new AW.UI.Grid;

    
obj.setCellData("cell");
    
obj.setHeaderText("header");
    
obj.setColumnCount(10);
    
obj.setRowCount(10);

    
obj.setCellEditable(true);

    
obj.setCellTemplate(new AW.Templates.Combo1);

    
obj.setPopupTemplate(list11);

    
document.write(obj);

 
Alex (ActiveWidgets)
Monday, May 15, 2006



This topic is archived.

Back to support forum

Forum search