diff options
Diffstat (limited to 'common/src/main/webapp/usageguide/appserver/data/notificationData.json')
-rw-r--r-- | common/src/main/webapp/usageguide/appserver/data/notificationData.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/common/src/main/webapp/usageguide/appserver/data/notificationData.json b/common/src/main/webapp/usageguide/appserver/data/notificationData.json new file mode 100644 index 0000000..a532151 --- /dev/null +++ b/common/src/main/webapp/usageguide/appserver/data/notificationData.json @@ -0,0 +1,42 @@ +{
+ "err_data" : {
+ "title": "Error",
+ "showClose": "true",
+ "closeBtnTxt": "Ok",
+ "icon": "glyphicon glyphicon-exclamation-sign",
+ "iconColor": "icon_error",
+ "msg": "<<Please input your message here>>",
+ "buttons": []
+ },
+ "warn_data" : {
+ "title": "Warning",
+ "showClose": "true",
+ "closeBtnTxt": "Ok",
+ "icon": "glyphicon glyphicon-warning-sign",
+ "iconColor": "icon_warning",
+ "msg": "<<Please input your message here>>",
+ "buttons": []
+ },
+ "info_data" : {
+ "title": "Information",
+ "showClose": "true",
+ "closeBtnTxt": "Ok",
+ "icon": "glyphicon glyphicon-info-sign",
+ "iconColor": "icon_info",
+ "msg": "<<Please input your message here>>",
+ "buttons": []
+ },
+ "confirm_data" : {
+ "title": "Confirmation",
+ "showClose": "true",
+ "closeBtnTxt": "Cancel",
+ "icon": "glyphicon glyphicon-info-sign",
+ "iconColor": "con_confirm",
+ "msg": "<<Please input your message here>>",
+ "buttons": [
+ {
+ "text": "Ok"
+ }
+ ]
+ }
+}
|