从网格中删除行而不在数据库中删除它

时间:2015-10-21 10:54:48

标签: javascript extjs extjs3

我正在尝试删除网格extjs 3.4中有状态= F的行。有关如何操作的想法吗?

var status = null;
     $.ajax({
           type: "POST",
           url: "",
           dataType : 'xml',
           data : {
            "Where" : "Status='F'"
           },
         success:function(xml) {
             $(xml).find('record').each(function () {
                status = $(this).find("PK").text();
             });
             if(status) {


             }
         },
         error: function (error) {
             alert('error');
         }
       });

1 个答案:

答案 0 :(得分:0)

同意Michel Franke,添加过滤器但具有排除状态store.filterBy(function(record){ return record.get('status') != 'F'; }的功能