sencha(124)
-
Sencha type: 'combobox' 값 변경시, 다른 combobox 변경하기
dependancy가 있는 combobox에 대해서 master 역할을 하는 combobox 변경시, slave combobox 내용 변경하기Ext.create('Ext.container.Container', { renderTo: Ext.getBody(), layout: 'vbox', items: [ { xtype: 'combobox', id: 'comboBox1', fieldLabel: 'Master ComboBox', store: ['Category 1', 'Category 2', 'Category 3'], listeners: { select: fu..
2024.11.18 -
Sencha chart에서 데이터 바인딩하기
store 참조Ext.define('MyApp.store.ChartStore', { extend: 'Ext.data.Store', alias: 'store.chartstore', fields: ['name', 'value'], // Define fields for the data data: [ { name: 'Category 1', value: 30 }, { name: 'Category 2', value: 45 }, { name: 'Category 3', value: 25 } ]});Ext.create({ xtype: 'cartesian', renderTo: Ext.getBody(), width: 600, height..
2024.11.15 -
Sencha Ext.Msg.alert에서 클릭시 특정 페이지로 redirect
Ext.Msg.alert('Warning', 'Session is expired!!', function() { // Redirect to a specific page after the user clicks 'OK' window.location.href = 'https://example.com/login'; // Change the URL to your desired page});
2024.10.20 -
Spring Boot에서 이미지 가져오기
Binary를 직접 가져오는 경우buttons: [ { text: 'Generate QR Code', handler: function(button) { const urlToEncode = 'https://example.com'; // Directly set the src of the image to the FastAPI or Spring Boot endpoint that returns the image const qrCodeUrl = '/qrcode?url=' + encodeURIComponent(urlToEncode); // Add the image component to ..
2024.10.19 -
Sencha form에 image 추가
다른 field처럼 image를 넣으면 됨기본적으로 Label은 없음Ext.create('Ext.form.Panel', { title: 'Image Display and Upload Form', width: 400, bodyPadding: 10, renderTo: Ext.getBody(), items: [ { xtype: 'image', src: 'path/to/default-image.jpg', // Replace with default or dynamic image URL alt: 'No image available', width: 200, height: 200, ..
2024.10.19 -
Sencha panel title click시, 화면 refresh하기
{ xtype: 'panel', width: leftWidth, bodyStyle: 'background-color:black', html: ' Home', listeners: { click: { element: 'el', fn: function() { window.location.reload(); } } }},
2024.10.01