The ability to pass boolean parameters via the #hash format URL has suddenly stopped working properly
E.g.
openUrl("#Form:Task_Update?ID=1234&Return=true&ShowDetail=true&Comment=test ..."
The ID & Comment pass correctly, BUT the 'Return' boolean parameter either does not work at all, or, if the 'Return' boolean works, the 'ShowDetail' boolean does not! Furthermore, it depends if the URL is being opened in the 'same window' or a 'popup window' as to which boolean variable will pass and which wont!!
This worked perfectly up until today.
Please resolve as a matter of urgency
An actual example is in my Admin system, I have a function called UpdateTask, which is used to call a stateless form from a button attached to a view containing tasks (see: #View:My_Tasks_Own)
void supporttask.UpdateTask(int ID)
{
openUrl("#Form:Task_Update_Owner?Return=true&ShowDetail=true&Tab=Status&Task_ID=" + input.ID + "", "popup window", "height=400,width=550");
}
when executed, the 'Return' Boolean no longer passes through but the 'ShowDetail' boolean does.. If I change from 'popup' to 'same window' the 'ShowDetail' boolean doesn't pass through but the 'Return' Boolean does!
Please Help!
Thanks,
Todd