EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Opan Mustopah on January 27, 2015, 03:39:54 AM



Title: onclick event on button messager like confirm message
Post by: Opan Mustopah on January 27, 2015, 03:39:54 AM
hello again,

i want to get onClick event when i click ok button in message like confirm message,
how to do that?

thanks in advance


Title: Re: onclick event on button messager like confirm message
Post by: stworthy on January 27, 2015, 05:32:54 AM
What is the 'message'? Please describe your question in more detail.


Title: Re: onclick event on button messager like confirm message
Post by: Opan Mustopah on January 27, 2015, 06:48:46 AM
oh i'm sorry stworthy,

i mean, we have messager plugins right? an one of them is messager.confirm that have two default button, ok and cancel.
and i want to get event from that button like onClick from ok button for example.

it is possible to do that?


Title: Re: onclick event on button messager like confirm message
Post by: arma on January 27, 2015, 07:44:25 AM
Code:
$.messager.confirm('Confirm', 'Are you sure to confirm this confirmation?', function(r){
if (r){
// OK click you mean should be here
}
});