Javascript/Sencha(164)
-
Sencha treepanel row 선택하기
Row ID로 선택하기// Assuming your TreePanel is already created and has an id or referenceExt.onReady(function () { var treePanel = Ext.getCmp('myTreePanel'); // Replace 'myTreePanel' with your TreePanel's id // Get the selection model var selectionModel = treePanel.getSelectionModel(); // Find a node by id or some other identifier var node = treePanel.getStore().getNodeById('desiredNod..
2024.12.05 -
Sencha timefield의 값과 표시를 분리하기
Ext.define('MyApp.view.TimeFieldExample', { extend: 'Ext.form.Panel', xtype: 'timefield-example', title: 'TimeField with Binding', width: 300, bodyPadding: 10, viewModel: { data: { timeValue: null, // Holds the actual time value timeText: '' // Holds the display text } }, renderTo: Ext.getBody(), items: [ { xtype: '..
2024.12.05 -
Sencha Custom js 파일 등록
app.json에 추가{ "name": "MyApp", "version": "1.0.0", "requires": [ "ext" ], "id": "MyApp", "js": [ { "path": "app.js", "bundle": true }, { "path": "resources/scripts/myCustomScript.js", "includeInBundle": false } ], "css": [ { "path": "resources/css/app.css", "bundle"..
2024.12.05 -
Sencha treepanel의 모든 node 펼치기
treepanel의 함수 사용var treePanel = Ext.ComponentQuery.query('treepanel')[0]; // Get your TreePanel instanceif (treePanel) { treePanel.expandAll(); // Expand all nodes console.log('All nodes have been expanded.');}store를 이용var treePanel = Ext.ComponentQuery.query('treepanel')[0]; // Get your TreePanel instancevar store = treePanel.getStore(); // Get the TreeStorestore.getRootNode().cascadeBy(f..
2024.12.05 -
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 -
Sencha treepanel에서 선택된 row 정보 가져오기
treepanel에서 정보를 가져옴// Assuming 'treePanel' is the reference to your TreePanel instancevar selectedNodes = treePanel.getSelectionModel().getSelection();// Iterate through the selected nodesselectedNodes.forEach(function(node) { console.log('Selected Node:', node.get('text')); // Replace 'text' with the field name you want});Ext.create('Ext.tree.Panel', { title: 'Sample TreePanel', width:..
2024.12.05