我正在使用EXT.NET
ComboBoxFor控件并将其与items集合绑定。
下面是我的HTML
X.ComboBoxFor(c => c.COUNTRY_CD).FieldLabel("Select Country").ID("CmbCountry").Editable(false).Width(300).Items(from p in Model.CountryList select new Ext.Net.ListItem { Text = p.COUNTRY_DESC, Value = p.COUNTRY_CD.ToString() })
如何设置组合框以显示选择为0的默认值
答案 0 :(得分:0)
只是这样做:
<Combobox>.Select(0);
或使用属性SelectedItem
答案 1 :(得分:0)
得到了解决方案
X.ComboBoxFor(c => c.CountryList[0].COUNTRY_CD).FieldLabel("Select Country").ID("CmbCountry").Editable(false).Width(300).Items(from p in Model.CountryList select new Ext.Net.ListItem { Text = p.COUNTRY_DESC, Value = p.COUNTRY_CD.ToString() })