Page 1 of 1

Show message and redirect.

Posted: Mon Apr 27, 2020 3:24 pm
by mariostg
if I do this

Code: Select all

echo $this->ShowMessage("Saved!!");
$this->RedirectToAdminTab('Registraire',$params=['hid'=>$ri->id]);
I get the redirect I want, but no message. If I do this:

Code: Select all

echo $this->ShowMessage("Saved!!");
//$this->RedirectToAdminTab('Registraire',$params=['hid'=>$ri->id]);
Well, I get the message displayed, but no redirect. There must be a way to have both done.