ext.net存储组合框中的清除过滤器问题

时间:2016-12-20 12:23:08

标签: c# wcf ext.net

案例1(工作正常)

  1. 打开页面
  2. let urlSearchParams = new URLSearchParams(); urlSearchParams.append('name', name); urlSearchParams.append('dob', dob); let body = urlSearchParams.toString(); let opts: RequestOptions = new RequestOptions(); opts.method = RequestMethod.Post; opts.headers = new Headers({ 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' }); this.http.post(this._addProfileUrl, body, opts) .subscribe(res => { ................. ................. } );
  3. 中选择一个值
  4. combobox1
  5. 中选择其他值
  6. 点击新记录
  7. 案例2(问题)

    1. 打开页面,写一些单词以过滤combobox2 for 例如“H”
    2. combobox1过滤字词中选择其他值 “B”
    3. 点击新记录
    4. combobox2 - 只显示哪些值 开始“H”
    5. combobox1 - 只显示以“B”代码开头的值;
    6. ASPX

      combobox2

      aspx.cs

      在数据绑定之前,我使用了<ext:ComboBox ID="combobox1 " runat="server" DisplayField="CountyName" ValueField="ISSCode" QueryMode="Local"> <Store> <ext:Store ID="str1" runat="server" AutoDataBind="true">

      clearfilter()

1 个答案:

答案 0 :(得分:0)

试试这个解决方案

combobox1.Reset();
strCounties.DataSource = countyDataTable;
strCounties.DataBind();