Extjs Grid Sample
ExtJS는 동적이고 대화식인 사용자 인터페이스를 만들기 위한 많은 기능을 제공하는 강력한 JavaScript 프레임워크입니다. Ext.JS에서 그리드를 만드는 것은 일반적인 작업이며, Ext.grid를 사용하여 쉽게 수행할 수 있습니다.패널 클래스. 다음은 ExtJS를 사용하여 간단한 그리드를 만드는 예입니다: Ext.onReady(function() { // Define the data for the grid var data = [ { name: 'John', age: 30, city: 'New York' }, { name: 'Jane', age: 25, city: 'Los Angeles' }, { name: 'Bob', age: 40, city: 'Chicago' }, { name: 'Alice',..
2023. 4. 24.
chat screen code on Extjs.
Ext.application({ name: 'ChatApp', launch: function() { // create a panel to hold the chat messages var chatPanel = Ext.create('Ext.panel.Panel', { title: 'Chat Messages', layout: 'fit', region: 'center', items: [{ xtype: 'panel', id: 'chatBox', autoScroll: true }] }); // create a form panel to send messages var formPanel = Ext.create('Ext.form.Panel', { title: 'Send Message', region: 'south', c..
2023. 4. 18.