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

I have a huge form and I would like to submit only the fields that were modified on client side. So I need to decide, in client side, what fields to submit. Is it possible?

Submit always all fields and handle that in server side is not an option.

share|improve this question
JSF 1.x or 2.x? Why exactly is submitting the entire form a problem? Why exactly is handling all fields not an option? (JSF does that automagically, so the problem is now less understandable). Is it an autogenerated table with a million of fields or something? – BalusC Apr 4 '11 at 16:11

1 Answer

up vote 2 down vote accepted

Just disable the fields that were not modified. Inputs with the disabled attribute are not submitted.

share|improve this answer
Perfect. Thanks! – hef Apr 4 '11 at 16:45

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.