Sencha ajax progress
Ext.MessageBox.wait 활용 // Ext.MessageBox.wait를 사용하면 알아서처리 됨 Ext.MessageBox.wait('Please wait...', 'Submitting'); Ext.Ajax.request({ url: 'https://{domain}/{directory}', method: 'POST', headers: { 'Content-Type': 'application/json' }, params : Ext.JSON.encode(form.getValues()), success: function(conn, response, options, eOpts) { Ext.MessageBox.hide() var result = Ext.util.JSON.decode(conn.respons..
2024.04.08