Authored by kuangjiahua

update

@@ -45,13 +45,13 @@ @@ -45,13 +45,13 @@
45 brandCombobox.myCombobox({ 45 brandCombobox.myCombobox({
46 editable: false, 46 editable: false,
47 valueField : "value", 47 valueField : "value",
48 - textField : "value", 48 + textField : "text",
49 required:false, 49 required:false,
50 prompt: "选择品牌", 50 prompt: "选择品牌",
51 url : contextPath + "/UnionRebateRest/queryAllBrandList", 51 url : contextPath + "/UnionRebateRest/queryAllBrandList",
52 panelHeight:200, 52 panelHeight:200,
53 loadFilter: function (data) { 53 loadFilter: function (data) {
54 - return defaultLoadFilter(data); 54 + return data;
55 } 55 }
56 }); 56 });
57 57
@@ -63,13 +63,13 @@ @@ -63,13 +63,13 @@
63 $("#brand").myCombobox({ 63 $("#brand").myCombobox({
64 editable: false, 64 editable: false,
65 valueField : "value", 65 valueField : "value",
66 - textField : "value", 66 + textField : "text",
67 required:false, 67 required:false,
68 prompt: "选择品牌", 68 prompt: "选择品牌",
69 url : contextPath + "/UnionRebateRest/queryAllBrandList", 69 url : contextPath + "/UnionRebateRest/queryAllBrandList",
70 panelHeight:200, 70 panelHeight:200,
71 loadFilter: function (data) { 71 loadFilter: function (data) {
72 - return defaultLoadFilter(data); 72 + return data;
73 } 73 }
74 }); 74 });
75 75