Function not working in header but works in each record
Possible bug in calling functions.
I have a function that only has an openurl statement. It is called from a view the intention is to open a new view.
When I set it in the View Header it does not work however when calling the same function from 'Each Record' it works as expected.
An alert/info statement shows that the function is being called but the openurl did not open a new view.
Here is the function
- void Rides_Full_Year()
- {
- //op_52=CURRENT_YEAR
- openUrl("http://creator.zoho.com/soundcyclists/scbc-ride-list/view-perma/Schedule_List_Full_Year?Ride_Date_op=52", "Same window");
-
- }
Herb Wexler