Hi,
Can we redirect page to other page after editing record or atleast can we show message like record edited successfully.
Thanks
5 Answers
Hello,
You can do something like,
$opt["edit_options"]["afterSubmit"] = 'function(response) { if(response.status == 200)
{
alert('Record edited');
return [true,""];
}
}';
If you are using licensed version, you can get latest build by sending me email at [email protected]
How can I redirect to other page after editing? This code didn´t work for redirecting only for alerting
The alert() code was to give you an idea.
You can replace it with
location.href="http://domain.com"; OR
window.open("http://domain..com")
Your Answer