I currently have this:
$('form#uwbhandler').on('click', function(e){
e.preventDefault();
alertify.confirm("Mode 1",
function(){
alertify.success('Sent: Success Something');
socket.emit('send command', {data: 'acommand'});
},
function(){
alertify.success('Sent: Something');
socket.emit('send command', {data: 'bcommand'});
}).setHeader('<em>Select Mode</em> ').setting('labels',{'ok':'Mode 1', 'cancel': 'Mode 2'}).set({onshow:null, onclose:function(){ alertify.message('confirm was closed.')}});;
});
Which is mostly taken from the example on the alertify.js page. However, I want to customize the cancel button action separate from the onclose button. However, closing with the "x" button for the dialog fires the cancel event event after setting a separate onclose function.
I recommend using the Dialog Factory to create your custom dialog.
However, A quick solution would be to inherit from the existing confirm dialog and update its
setup
to disableinvokeOnClose
:Then use a local variable to decide whether to execute the logic inside the
onclose
callback:see live demo