Sencha Object 접근하기
ComponentQuery 사용Ext.define('MyApp.controller.MainController', { extend: 'Ext.app.ViewController', alias: 'controller.main', getTreePanelInfo: function () { // Use ComponentQuery to find the TreePanel var treePanel = Ext.ComponentQuery.query('treepanel')[0]; // Adjust the selector if needed if (treePanel) { console.log('TreePanel Title:', treePanel.getTit..
2024.12.05