Hi,
I'm currently testing/learning Zoho Creator for a potential integration app.
I've defined several custom functions and I am trying to call one of them from a Page, like below (using the Script builder feature)
- <% someVar = thisapp.geopal.returnSomething(); %>
... but when saving, I constantly get the "Error at null" error message.
The custom function is simply
- string geopal.returnSomething()
- {
- return "sss";
- }
What happens in here?