Hi,
I have binded a Radcombo-box items with some attributes at Client-side , After a new item was added on the Combo-box
The item text only displayed, but the attribute columns are blank, they were not visible. Pls help to solve this problem.
var items = combo.get_items();
combo.trackChanges();
var comboItem = new Telerik.Web.UI.RadComboBoxItem();
comboItem.set_text("New");
comboItem.set_value("Value");
comboItem.get_attributes().setAttribute("Pieces", "2");
comboItem.get_attributes().setAttribute("GrWt", "2.00");
items.add(comboItem);
combo.commitChanges();
I have binded a Radcombo-box items with some attributes at Client-side , After a new item was added on the Combo-box
The item text only displayed, but the attribute columns are blank, they were not visible. Pls help to solve this problem.
var items = combo.get_items();
combo.trackChanges();
var comboItem = new Telerik.Web.UI.RadComboBoxItem();
comboItem.set_text("New");
comboItem.set_value("Value");
comboItem.get_attributes().setAttribute("Pieces", "2");
comboItem.get_attributes().setAttribute("GrWt", "2.00");
items.add(comboItem);
combo.commitChanges();