extjs序号倒序

            columns : [{
                header : '序号',
                width : 60,
                xtype : "rownumberer",
                sortable : false,
                align : 'center',
                renderer : function(value,metadata,record,rowIndex) {
                    return leftStore.getCount()-rowIndex;
                }                    
            },

        //重置右表行号
        for(var i = 0; i < rightStore.getCount(); i++) {
            rightStore.getAt(i).set("myRowNum", rightStore.getCount() - i);
        }

原文地址:https://www.cnblogs.com/cdcr/p/9516672.html