Hi,
I am new to app development however used to program PLSQL many years ago.
I am trying call a simple function from the a button, when action ‘on click’ calls a function.
I have put a function call like this:
example(1,’house’);
and in the xxxx_custom.js file put the code:
function example(a,b) {
number += a;
alert(‘You have chosen: ‘ + b);
}
Nothing happens. Any ideas to kick me along writing functions.
Also can you use the debugger in the xxx_custom.js file?
Thank you
Andrew