Nov 13, 2016

[Fixed Solution] jEasy UI Messenger Change Button Text

Question
I am using jEasy UI Framework for my project. I am using $.messager.confirm to get a confirmation from the user.
Which shows two buttons OK and Cancel.
How can i change button text when i am using $.messager.confirm ?
Example:
'ok' => 'yes',
'cancel' => 'no'
ANSWERE
$.messager.defaults.ok = 'Yes';
$.messager.defaults.cancel = 'No';
These are the two lines which will be need to change the text property of the prompt messenger in jEasy UI

JWT Token Decode Using Jquery

When it come to authentication we use many mechanism. Ones the user authenticated we must keep these details somewhere safe. So we can share...