0

I'm having a zend form - comprised of a number of zend - sub forms, where the user is creating a new question (its a content management system). In one of the subforms, the user can click on a button to add more textfields, like this:

[----------] [----------] [click to add more]

which should give

[----------] [----------] [----------] [click to add more]

I'm trying to set a flag in the sub form in question - or set a count on how many times the button has been clicked, to add that many total fields to the subform - but its simply not working. I tried using a static count variable - but the value doesnt get incremented at all.

Any thoughts on how to do this in a Zend-subform within a zend form? I'll definitely update if I hit a solution. Thanks!

1 Answer 1

1

I used Sessions to store the click. i tried doing this with javascript but within the subform it was not working. if i simply have such a situation where there is just 1 form (no subforms), the javascript solution works fine. effectively, just increment the counter by one onclick. with sessions, or some other global variable, simply do the same - increment the counter, and unset that var when the form is submitted. so - when u come back to the form, the previous session var value is not retained.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.