Defining administrator messages from MobileFirst Operations Console -
hi defining administrator messages mobilefirst operations console access disabled in mobilefirst 8.0.
is there way change header of message alert box can change message? "application disabled". want change this.
see documentation topic: https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/application-development/translation/#cordova-applications
you should able find corresponding variable header of dialog in messages.json
file. file available after application has been built.
- android: [cordova-project]\platforms\android\assets\www\plugins\cordova-plugin-mfp\worklight\messages
- ios, windows: [cordova-project]\platforms[ios or windows]\www\plugins\cordova-plugin-mfp\worklight\messages
the variable this:
"applicationdenied" : "application disabled",
you need override in applicative code.
example:
wl.clienmessages.applicationdenied = "sorry!";
should work...
Comments
Post a Comment