Hi

I noticed my form was submitting multiple times and I tracked it down to
this is the sci pt file

dojo.event.connect(dojo.byId("${componentId}"), "onclick", document,
"${functionName}");

As I need to update the particular part of the page that has the link submit
this was causing multiple connects on the form. So I have changed it to this
and it works just fine

dojo.event.kwConnect({srcObj:dojo.byId("${componentId}"), srcFunc:"onclick",
adviceObj:document, adviceFunc:"${functionName}", once: true});

It is probably something that should be submitted or at least added to the
Jira as a bug. Never submitted a bug before but I can go ahead and attempt
to unless it already exists as a bug.

Regards

--


-- e
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Tacos-devel mailing list
Tacos-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tacos-devel

Reply via email to