Ext.js Message box is to show some alert information on the occurrence of some event. Ext JS has different message boxes as listed in the following table.
Sr.No. | Message Box |
---|---|
1 | Basic alert box This is the simplest alert box just to show some information on some event. |
2 | Confirm box This message box asks for user confirmation and different methods called on different options. The user selects as yes or no. |
3 | Prompt box This Ext.js message box prompts for user input. |
4 | multiline User input box This is also like the prompt box but it allows the user to enter multiline information instead of just one line. |
5 | Yes No Cancel alert box This is like a confirm box which asks the user for some confirmation, such as whether the user wants to carry out the task or decline or cancel the task. Based on user selection, different methods get called. |
Next Topic : Click Here