0

我正在使用EXT.NETComboBoxFor 控件并将其与项目集合绑定。下面是我的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 的默认值

4

2 回答 2

0

做就是了:

<Combobox>.Select(0); 

或使用该物业SelectedItem

于 2013-07-17T12:58:46.523 回答
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() })
于 2013-07-18T05:25:45.333 回答