3.2.0

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
May 15,
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.Combo, 1);

    obj.setPopupTemplate(list1, 1);

    document.write(obj);


Alex (ActiveWidgets)
May 15,

This topic is archived.

See also:


Back to support forum