Sencha 스크립트 간단하게 확인하기
Test.js: 확인할 스크립트 생성Case1Ext.onReady(function () { // Sample data const data = [ { name: 'John Doe', email: 'john.doe@example.com', age: 30 }, { name: 'Jane Smith', email: 'jane.smith@example.com', age: 25 }, { name: 'Mike Johnson', email: 'mike.johnson@example.com', age: 35 } ]; // Define a data store const store = Ext.create('Ext.data.Store', { fields..
2024.12.01