sencha(124)
-
Sencha Grid scroll 추가
scrollable: trueExt.create('Ext.grid.Panel', { renderTo: Ext.getBody(), title: 'Scrollable Grid Example', width: 800, height: 400, // Set a fixed height to make scrolling effective scrollable: true, // Enable scrolling store: Ext.create('Ext.data.Store', { fields: ['id', 'name', 'email'], data: (function () { // Generate sample data let data ..
2024.11.26 -
Sencha Grid 405에러 415에러 처리
405에러: Post방식으로 호출해야 하는데, Get방식으로 호출했기 때문에 발생415에러: Media Type이 정의되지 않아서 발생Ext.create('Ext.data.Store', { storeId: 'nodeStore', // Assign an ID for easy reference fields: ['DATA1', 'DATA3', 'DATA8', 'DATA2'], // Define fields proxy: { type: 'ajax', // Use Ajax to fetch data url: '/Node/getNode2List.do', // Server endpoint to fetch data actionMethods: { re..
2024.11.26 -
Sencha chart series 초기화
series를 동적 처리할때, chart.setSeries([]); 처럼 초기화를 해줘야 함// Assume you have a chart component with an ID of 'myChart'let chart = Ext.getCmp('myChart');// Function to update series dynamicallyfunction updateSeries(data, xField, yField) { if (!chart) { console.error('Chart not found!'); return; } // Remove existing series chart.setSeries([]); // Add a new series dynamically..
2024.11.24 -
Sencha chart에서 확대 축소 처리
itemhighlight: Highlights individual data points when hovered over.panzoom: Enables zooming and panning using gestures or mouse.zoomOnPanGesture: Enables zooming via gestures like pinch zoom or scroll wheel.axes: Specifies which axes allow panning and zooming.crosszoom: Allows rectangular zooming by dragging over a specific area.zoomOnPanGesture: Disables zooming when dragging. i..
2024.11.24 -
Sencha layout item들이 수평으로 꽉차게 보이도록 처리
수평으로 item들이 보이도록 하려면, hbox 사용stretch를 사용해서 높이가 꽉차하게 함flex를 사용해서 넓이를 꽉차게 함Ext.onReady(function () { Ext.create('Ext.panel.Panel', { renderTo: Ext.getBody(), title: 'Panel with Items Stretching Horizontally', width: 600, height: 300, layout: { type: 'hbox', // Horizontal Box Layout align: 'stretch', // Stretch items to fill container heig..
2024.11.24 -
Sencha chart x축 글자 수직으로 표시하기
label의 rotate를 통해서 각도를 원하는 대로 조정할 수 있음 axes: [ { type: 'numeric', position: 'left', title: 'Value', grid: true, }, { type: 'category', position: 'bottom', title: 'Mo..
2024.11.24