1. 程式人生 > >extjs 獲取grid選中項的id

extjs 獲取grid選中項的id

var smRule = Ext.create('Ext.selection.CheckboxModel',{listeners: {
    selectionchange: function(sm, selections) {
//       alert("選擇了");
        var rows = brUnitRuleGrid.getSelectionModel().getSelection();
        if(rows.length<=0){
        ruleId = "";
        //移除載入影響分析
    brUnitRuleEffectGridStore.removeAll();
      //移除交易步驟
    brUnitFunctionStepruleStore.removeAll();
      //移除影響範圍
    brUnitRuleEffectscopeGridStore.removeAll();
        return; 
        }

       
    }
}}
);