Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using UiApp to collect data from a form, but I have users double clicking the submit button. This runs doPost twice. Granted, they have to click mighty fast to get it to actually post twice, but it happens.

My questions is: has anyone had experience in disabling the submit button, say with an onMouseUp? Is there a better way to do this? I've been told to be wary of adding multiple onClick handlers to buttons, as it can be unstable. Any stable solutions to this?

I have to use a submit button as there is a file upload in the form.

share|improve this question

1 Answer

up vote 0 down vote accepted

I've faced this problem and ever since Google introduced ClientHandlers, there is a way out. Just add a client handler to your submit button disabling it (and remember to enable it when you are done with the server handler function or doPost)

var plswait = app.createClientHandler().forEventSource().setEnabled(false).setText('Please wait...'); 
var btnSubmit = app.createSubmit().addMouseDownHandler(plswait); 

is my favourite.

share|improve this answer
It appears as if the submitButton needs to run a full click cycle, up and down to call doPost. Tried splitting the events with the to MouseDown (doPost), MouseUp(plswait), but then it seems doPost can't find the file upload. The handlers seem to be breaking the special relationship between doPost and SubmitButtons – MartinK Sep 13 '12 at 21:40
I'm giving the answer a check, as I think it will solve the problem for many, but if anyone finds a way to get this to work with a true submitButton and file upload, please let me know. – MartinK Sep 15 '12 at 16:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.