Home | History | Annotate | Download | only in resources

Lines Matching refs:title

125  * @param title of the dialog box [optional]
129 function colorDialog(title, color) {
133 if (title == undefined) {
134 title = "Choose Color";
142 var res = chooser.showDialog(window, title, color);
160 * @param title title of message box [optional]
163 function msgBox(msg, title, msgType) {
168 if (title == undefined) title = msg;
170 JOptionPane.showMessageDialog(window, msg, title, msgType);
185 * @param title title of message box [optional]
187 function alert(msg, title) {
189 msgBox(msg, title, JOptionPane.INFORMATION_MESSAGE);
197 * @param title title of message box [optional]
199 function error(msg, title) {
201 msgBox(msg, title, JOptionPane.ERROR_MESSAGE);
209 * @param title title of message box [optional]
211 function warn(msg, title) {
213 msgBox(msg, title, JOptionPane.WARNING_MESSAGE);
246 * @param title title of message box [optional]
249 function confirm(msg, title) {
254 if (title == undefined) title = msg;
256 result = JOptionPane.showConfirmDialog(window, msg, title, optionType);