Extjs(3)
-
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 컴포넌트(xtype)의 config에 스크립트로 값 지정하기
센차는 xtype 초기화 시점에 config의 값이 지정되기 때문에, 스크립트로 직접 xtype의 config 값을 지정할 수 없음afterrender 또는 init 메소드가 호출되는 시점에 지정할 수 있음Ext.define('Home.view.main.Test', { extend: 'Ext.form.Panel', alias: 'widget.test', items: [ { xtype: 'textfield', itemId: 'name', name: 'name', fieldLabel: 'Name', allowBlank: false, // Can't directly..
2024.10.01 -
Sencha post 방식으로 데이터 전송시, 동적으로 파라메터 추가
form.submit({ params: { '_csrf': document.getElementById('_csrf').innerText }, success: function(form, action) { Ext.Msg.alert('Failed', action.result.msg); }, failure: function(form, action) { Ext.Msg.alert('Failed', action.result.msg); }});
2024.07.27