Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
352 views

Using ViewScript Decorator on Nested Subforms (Zend Form)

I want to use a view script to render my zend form as it seems to be the best way to control the layout/design of the form while still using the Zend_Elements classes. From the view script, I render ...
4
votes
2answers
395 views

How to subForm a subForm with ZendX_Jquery TabContainer/TabPane?

I try to get Zend_From working with nested jquery tabs. I know how to do it with plain HTML/jQuery, and i also have a single tab row working with decorators and so on. (see ...
4
votes
1answer
268 views

Zend_Form & Pagination

I am putting together a Zend_Form that has numerous SubForms. In fact, it has the potential to have so many subforms, I'd like them to appear on multiple pages. Is it possible to use Zend_Paginator ...
4
votes
1answer
666 views

Setting decorators to Zend_Form_Element_Checkbox

I have a zend form comprised of 4 subforms. 1 of these subforms has 4 elements, and one of those elements is a zend_form_element_checkbox. I have 4 different display groups (1 for each subform) - one ...
3
votes
2answers
343 views

how do you group subforms

i have 4 subforms in a form i would like to group 2 of them together, and then apply some decorators to them. here is what i have so far. w/in each subform i already have some display groups present ...
2
votes
1answer
210 views

ZF- How to access subform elements and set its values

Good day to all! What I have here is setting up subform elements and it works fine. //Setting SubForm element $subForm = new Zend_Form_SubForm(); $subForm->setName('sampleSubForm'); ...
2
votes
1answer
1k views

How do configure Zend_Form to use array notation?

I'm having difficulty configuring Zend_Form. I have a Zend_Form sub-class. The form has some required information and some additional information. I want the additional information to be accessible ...
2
votes
2answers
1k views

Zend_Form array notation and empty elements names

I'want to render: <input type="text" value="" name="foo[]" /> <input type="text" value="" name="bar[]" /> but Zend_Form_Element require a (string) name, so I need to do: ...
1
vote
1answer
77 views

subform within a subform

I'm working on a model using Zend Form. I have a subform called $product_item. I would like to add multiple instances of it to another subform called $items. How would I go about doing that? I'm not ...
1
vote
2answers
142 views

ZF: ZEND_SUBFORM - how to make element name like list[id][name]?

I create elements for subform: for($i = 1; $i<10; $i++) $name = new Zend_Form_Element_Text("[$i][name]"); But [ and ] will be deleted after dispatch page. So how to setup name like ...
1
vote
1answer
468 views

Zend Framework: how to create a sub form with a textfield with label and a submit button without?

$sfKeyword = new Zend_Form_SubForm(); // text field $tfKeyword = $sfKeyword->createElement('text', 'keyword'); $tfKeyword->setLabel('Search Keyword:'); // add elements ...
1
vote
2answers
352 views

Zend_Form_SubForm flattening array notation with getValues()

I am working with a series of forms that have subforms embedded into them and I am trying to work out if I can make getValues return the values without the array notation on the subform. ie: $form = ...
1
vote
2answers
369 views

How to set the id of an lement in Zend_Form manually?

I have an image element in my Zend_Form. $dropDownButton = new Zend_Form_Element_Image('image_button'); $dropDownButton->setOptions(array('image'=>'/images/image1.png', ...
1
vote
1answer
785 views

Zend Framework Zend Zend_Form_SubForm Label

Been looking for a while on how to sort this out. Essentially, I just need to set a label for a Zend Framework Sub Form. However I try to do this is just doesn't work. Zend Sub Form doesn't have a ...
0
votes
0answers
34 views

Zend Subform tutorial not working

I tried implementing the Zend subforms from this tutorial. Unfortunately, what happens is, it loads the first form declared from the main form. When I fill in the values, it ends up going back to that ...
0
votes
1answer
42 views

Zend Subform tutorial displaying forms in unaccurate order

I implemented the zend subform tutorial from here and the problem im having is on occassion it will display the second subform before the first. any ideas why this is happening?
0
votes
2answers
92 views

Splitting up a Zend_Form

I have created a Zend_From with a couple of fields. What I'd like to do, is put them inside paragraphs, so that they would flow naturally. For an example Danny had [select with 1-10] apples and James ...
0
votes
1answer
82 views

ZF: Zend_Form_SubForm display elements in the View on one's own using only FormElements and ViewHelper?

My task is to create list of inputs which have name like photoForm[name][1]. If I do print $this->form in the view - that is ok. All fields are good. But I don't wanna use decorator and I would like ...
0
votes
1answer
164 views

How to submit a Zend Dojo subForm

I have spent hours on the net to find a solution, but nothing works. I have a form divided into 2 subForms (I couldn't get the accordion pane to work) like this : $sfBase = new ...
0
votes
0answers
105 views

assigning values to elements in nested zend sub forms

I have a 3 tier form structure. There's a main form, frmMain (which acts more like a container form) which has subforms e.g frmSubFacts. And these sub forms such as frmSubFacts have subforms; for ...
0
votes
0answers
81 views

Test SubForms in PHPUnit [closed]

For a project, I'm trying to unit test a controller that makes use of SubForms: $this->request->setMethod("POST")->setPost($values); $this->dispatch("controllername/index"); $values is ...
0
votes
1answer
142 views

Variable number of fields on a form using Zend_Form in the Zend Framework

I have a db table and a linked table "site" is defined in the first and in the second a number of values varying from one to many can be added that point back to the "site". The user can open the ...
0
votes
0answers
309 views

Zend Framework: I have two subforms but only the second one attached gets rendered

I have two zend subforms that I attach to the form object like so $this->addSubForm($groupDetails, 'groupdetails') ->addSubForm($contactPersonDetails, 'contactpersondetails'); However only the ...
0
votes
1answer
432 views

In Zend SubForm, how do I set Legend escape to false?

I've got a subform, where I set a legend. $dob = new Zend_Form_SubForm(); $dob->addElement($birthdayMonth) ->addElement($birthdayDay) ->setLegend('when is your birthday?'); How do I set ...
0
votes
1answer
217 views

Display data in table on a subform

I've got a question regarding sub forms. Currently I've got 2 sub forms and one parent form. On one of the sub forms I want to get data from the model and this needs to be displayed in a table, the ...
0
votes
1answer
658 views

Zend Framework, Zend_Form_Element how to set custom name?

I have form, where some fields are looks like rows, so I can add/delete them using JS. For example: Field with ID=1 (existing row) <input id="id[1]" type="text" name="id[1]" value="1" /> ...
0
votes
1answer
552 views

is it possible to create subform and displaygroup without fieldset on zend forms?

is it possible to create subform and displaygroup without fieldset on zend forms?
0
votes
2answers
938 views

Zend Framework problems using Element, sub-forms and belongsTo

Still pulling my hair out with Zend_Form and any elements that need to be placed in a sub-array. form->populate() does not work when working with elements within a sub-form that have been set to a ...
0
votes
1answer
321 views

Zend_Form : Adding fields in sub-forms on user's click

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 ...
0
votes
2answers
437 views

Problem retrieving values from Zend_Form_SubForms - no values returned

I have a Zend_Form that has 4 or more subforms. /** Code Snippet **/ $bigForm = new Zend_Form(); $littleForm1 = new Form_LittleForm1(); $littleForm1->setMethod('post'); ...
0
votes
3answers
3k views

Zend_Form using subforms getValues() problem

I am building a form in Zend Framework 1.9 using subforms as well as Zend_JQuery being enabled on those forms. The form itself is fine and all the error checking etc is working as normal. But the ...
0
votes
2answers
2k views

How to validate >1 field at a time, in a Zend sub-form?

I've created a 3 screen "wizard" using the Zend_Form_SubForm example from the online reference documentation. The requirement I'm having trouble meeting is this: If fields 1, 2, & 3 of the first ...