Here's the scenario (a very common one):
- A team registration form.
- A team can have several members, so the user can add several members.
- At least one member should be inserted.
The user should be allowed to:
- A) Fill in team details (name, logo, etc…);
- B) Being notified inline if some of the fields are not correct.
- C) Choose to Either Insert the team or make it publicly available by Publish it and see the related validation rules for each choice.
- D) Add more members (trough a ADD MEMBER button) that will display more form fields to be filled in related to another model. (the user may also remove those fields);
I'm thinking about following the following steps, before doing so, however, I would like to request a look for those much more experienced then me on such subjects.
Can you please validate the above steps and point possible important missing points ?
We need to:
For A)
- Render the form using
CActiveForm;
For B)
- We need to set
enableClientValidationtotrue; - We need to
render both modelson one single form;
For C)
- Create validation model
scenarios. - Create a checkbox that will change the scenario to either Insert or Publish when checked
Ajax form validationshould beenableas well ;
For D)
- on click, we need to show/hide additional fieldsets.
- we need to collect
tabular inputfor members. - we need to use renderPartial
Am I missing something important that I should look at before starting to code this using Yii ? Would you use different steps? If so, can you please share ?