Hi,
I want to pass an additional parameter to isc.confirm(). Something like this:
As id is not a global var, them it is not working properly. Any ideas of how can i do this?
Thanks,
Fernando.
I want to pass an additional parameter to isc.confirm(). Something like this:
Code:
function confirmDelete ( id ) {
isc.confirm( 'Are you sure?' , function ( value ) {
if ( value )
{
AjaxRequest( '/url/'+ id );
}
}
);
}
Thanks,
Fernando.
Comment