zubenelakrab
10/24/2018 - 8:35 AM

grid

Basic Grid

Ext.define('', {
    extend: 'Ext.grid.Panel',
    alias:'widget.',
    requires: [
    ],
    controller:'',
    config: {
        
    },
    store: {
        type: ''
    },
    columns: [],
    initComponent: function() {
        var me = this;
        me.callParent(arguments);
    }
});