I have an ASP.NET page that has three div
s within the only form
which renders as three jQuery ui tabs. All the three tabs have input
s and/or select
s that gets submitted to separate web methods.
On tab one there are two input
s of type submit
, that redirects after committing the form
to another page. Simultaneous edits are possible on all the three tabs, and therefore there is a need to implement some kind of form-dirty (section-dirty rather) indicators on the form.
The user needs to be warned before committing the redirecting-submits with an OK/Cancel prompt.
The section level dirty indicator should be resettable separately, sectionwise.
The DirtyForm jQuery plugin looks a good place to start, but wanted to hear about any caveats of this approach.
Has someone done anything like this? Thanks