Combobox保留价值

时间:2014-08-26 05:48:34

标签: javascript jquery combobox

使用以下代码时,我有一个用作组合框的文本框:

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 %>')
    });
});

我的问题是,如果该类别不存在,则会被清除。它不应该被清除。有人可以帮帮我吗?感谢

0 个答案:

没有答案