EXT.MessageBox Samples
Generating different styles of message boxes // Basic alert Ext.MessageBox.alert(‘Status’, ‘Changes saved successfully.’); // Show a dialog using config options Ext.Msg.show({ title:’Save Changes?’, msg: ‘Your are closing a tab that has unsaved changes. Would you like to save your changes?’, buttons: Ext.Msg.YESNOCANCEL, //fn: processResult, animEl: ‘elId’ }); //Prompt for user… Read More »