Hello!
I'm trying to do a number of things in my application in a piecemeal fashion, and the first thing I'm trying to do is call a javascript function to submit my form.
I have a link (
submit) and a 'doThis()' function in the header of my page. In my function, I've tried using doSubmit(); and doSubmit('SUBMIT') which I thought would call my After Submit DML process in the Page Processing section of my page. Nothing gets submitted into the database.
function doThis() {
doSubmit();
}
or
function doThis() {
doSubmit('SUBMIT');
}
What am I doing wrong?
TIA!