我有一个组合框可以为所有美国城市提供价值。 在这个组合框中,我想显示'None Selected'作为第一个值,其他值应按字母顺序排序。所以我需要在排序商店时排除'None selected'。 如何在ext js排序中实现这一点?
答案 0 :(得分:0)
对于Asp.Net MVC,我使用这种方式:
var myList= (List<Country>())CommonLogic.GetAllCountries();
myList.Add(new Country() {Id = -1, Name= "None selected" });
myList= liste.OrderBy(p => p.Id).ToList();
ViewData["countries"] = myList;
或者您可以使用emptyText选项:
var countryCombo = Ext.create('Ext.form.field.ComboBox', {
fieldLabel: 'Country',
renderTo: 'countryCombo ',
displayField: 'Name',
width: 500,
labelWidth: 130,
store: store,
queryMode: 'local',
typeAhead: true,
emptyText : 'None Selected'
});