Sencha Grid 자동 바인딩
Store 자동으로 로딩되도록 설정Ext.create('Ext.data.Store', { storeId: 'store', // Assign an ID for easy reference fields: ['DATA1','DATA5','DATA7'], // Define fields proxy: { type: 'ajax', // Use Ajax to fetch data actionMethods: { read: 'POST' // Specify that the "read" operation (load) should use POST }, headers: { 'Content-Type': 'application/js..
2024.11.27