使用以下代码时,我有一个用作组合框的文本框:
Sys.Application.add_load(function () {
$('#<%=txtCatToUpdate.ClientID %>').combobox({
webServiceMethodName: Magelia.WebStore.Admin.Scripts.Services.AutoCompleteServices.GetCategoriesFull,
additionalWebServiceParameter: ['<%=this.Page.UnitOfWorkContext.StoreId.ToString() %>'],
objectIdGetter: 'CategoryId',
labelGetter: function (o) { if (o != null) { return o.CatalogCode + ' > ' + o.CategoryCode } },
valueGetter: function (o) { if (o != null) { return o.CatalogCode + ' > ' + o.CategoryCode } },
hiddenField: $('#<%=hfCatToUpdateId.ClientID %>')
});
});
我的问题是,如果该类别不存在,则会被清除。它不应该被清除。有人可以帮帮我吗?感谢