Users Pricing

forum

Home Forums How to add radcombobox to cell in a table row cell – MindStick

How to add radcombobox to cell in a table row cell

Anonymous User 2670 31 Aug 2014

I am trying to add a RadComboBox to a table row Cell. I cannot use table.row.cells.add(radcombobox) as it expects a cell object. The table is programatically created .

protected override void Page_Init(object sender, EventArgs e) {

        base.Page_Init(sender, e);

        ConfigureTableColumns(DataContext, OperatingConditionsTable, node, segments);

        ConfigureTableRows(DataContext, OperatingConditionsTable, node, segments, inputs);

    }

private void ConfigureTableRows(CtalaDataContext context, Table table, Ctala.Entity.TreeNode reviewNode

IEnumerable<Ctala.Entity.TreeNode> segments, ILookup<string, OperatingConditionInput> inputsGroupedByCategory) {

        foreach (var category in inputsGroupedByCategory) {

            foreach (var input in category) {

                var row = new TableRow() {

                    CssClass = (altRow) ? "rgAltRow" : "rgRow"

                };

                table.Rows.Add(row);

                    var cell = new TableCell() {

                    Text = input.Name

                };

                row.Cells.Add(cell);

                var unitCell = new RadComboBox()

                {

                    ID = "Unit",

                    AllowCustomText = false

                };

                foreach (var item in input.Unit)

                {

                    unitCell.Items.AddRange(new RadComboBoxItem[] { new RadComboBoxItem(item) });

                }

               //cell = new TableCell()

                //{

                //    Text = input.Unit

                //};

                row.Controls.Add(unitCell);}}


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md