Zend Form is a class provided by the Zend Framework, an open source PHP 5 object oriented framework. The class assists in creating, rendering, and processing HTML forms.

learn more… | top users | synonyms

0
votes
1answer
19 views

populate values from data base in select box in zend framework

I am new in zend framework. I want to populate company name and company id from database to select box. in zend example as we do it PHP <option value="<?php echo id ?>" > <?php echo ...
0
votes
0answers
22 views

Decorate radio element as per require HTML in Zend_Form_Element_Radio

I wrote following setDecorators radio element, $objUserGender = new Zend_Form_Element_Radio('userGender'); $objUserGender ->addFilter('StripTags') ->addFilter('StringTrim') ...
0
votes
1answer
12 views

Zend Form Validator File Upload goes invalid

I got and Zend Form which does this: class Products_AddForm extends Zend_Form { public function init() { $ProductImage1 = $mainform->addElement('file', 'Productimage1', array( ...
0
votes
1answer
11 views

Line Breaks in Options of Radio Form Element

I need to display a number of addresses in a Zend_Form. The nature of the form dictates I'd use Zend_Form_Element_Radio. Each address is to be displayed as Surname Name Street No. Zip City But I ...
1
vote
1answer
14 views

Post multipart data with Zend Forms

I want to post arrays with Zend. html form: <form id="form" class="form-container" action="<?php echo $this->form->getAction(); ?>" method="post" enctype="multipart/form-data"> ...
0
votes
2answers
25 views

zend : populating a checkbox array with $form->populate(); from controller

We have a zend form with text input fields and array of checkboxes, as shown below - <input class="checkbox_Category" type="checkbox" name="tag[]" value="19"> somename1 <br/> <input ...
1
vote
1answer
50 views

How to add a new validator to field into collection (fieldset)

I would like add a new validator (using inputFilter) into my collection. The current code is as follows: My Code Form: namespace EventyEvent\Form; use Zend\Form\Element; use Zend\Form\Form; use ...
0
votes
0answers
35 views

How to use Zend_Validate twice

I'm using Zend_Validate_Db_NoRecordExists and I would like to validate my Zend_Form against two fields in DB, sample code: $phone_1 = new Zend_Form_Element_Text('phone_1'); ...
0
votes
1answer
8 views

Auto format date with Zend_Form_Element_DateTextBox

guys, this is a short to the point question. Is it possible to auto add the "slashes" on a Zend_Form_Element_DateTextBox while the user is typing? For example, et say my format is dd/mm/yyyy . So the ...
0
votes
1answer
27 views

form input pararel in zend form

I want to create form input that is parallel with zend form. how do i do it ?? i have this code : $this->addElement('select', 'curr', array( 'label' => 'Price', 'required' => true, ...
0
votes
1answer
41 views

How to validate a form Collection

I'm not being able to validate a form Collection element, here is how my fieldset looks like: class ProductFieldset extends Fieldset implements InputFilterProviderInterface { public function ...
0
votes
0answers
58 views

zend form element select with add option

I need to create a zend form element select with a button that, when clicked, makes a call to an url and appends the response (another form) to that form, in order to add an option to the select. ...
0
votes
0answers
16 views

Zend_Form_SubForm fails on call to addElement()

I am trying to create a form consisting of 6 sets of the following fields: Name Shipping Type Shipping Method Here is my Zend_Form code: <?php class Form_lsSettings extends Zend_Form { ...
2
votes
2answers
57 views

Zend Form File upload won't validate or upload files

I'm trying to do a file upload with Zend Form, but I just cannot get file uploads to work. Here's my form code: public function __construct($options = null) { ...
0
votes
2answers
51 views

Twitter Bootstrap Responsive not work

I'm doing some testing with twitter bootstrap and one of the most important things for me is that it is responsive. However I am doing some tests with my browser and when it gets to a certain size it ...
0
votes
1answer
24 views

Set a Zend Decoration for radio element

I need to set a decoration for to print: <input type="radio" id="option1" name="option" value="foo"> <label for="option1"></label> <label>Option 1</label> using ...
0
votes
0answers
23 views

Zend Form add img to Label in dt

my mind is twisting about the decorators. Slowly i get it all but i have 1 other issue. Im adding spans to the dds, now i want to add a image inside the dt that it looks like this ...
0
votes
1answer
56 views

ZF2 form as array

I'd like to create a simple zend form with a few fields but i wanna collect this fields into an array. I'd like to see my form names like this: name="login[username]" name="login[password]" ...
1
vote
3answers
38 views

Override default Zend_Form element renderer with custom HTML template?

I'm dissatisfied with the way Zend_Form renders form elements by default, and want to override it for all forms produced by instantiating a helper class I have that inherits from Zend_Form to take ...
0
votes
1answer
44 views

How to replace label tags in Zend Form

The task is to replace label tags in the Zend Form by any others (i.e. div) using decorators or something Now I have <label for="field1" class="required">Field1</label> <input ...
0
votes
0answers
38 views

Zend Form Element Captcha - reCAPTCHA - Conditionally Required

I have a Zend Form Captcha Element using reCAPTCHA, and it works perfectly. I want to make the field conditionally required, but it seems to always be required, ignoring the required setting on the ...
1
vote
1answer
26 views

Zend Form add span to dd

I am trying to make custom decorators and I came to an issue. Below is my code: $oElement->setDecorators(array( 'ViewHelper', array(array( 'data' => 'HtmlTag'), array('tag' => ...
0
votes
1answer
38 views

Saving Model to multiple tables

maybe on of you can help my with a little problem im dealing with right now. I have a simple form with: Loginname, Loginpassword, Name, Firstname, Age. Now i want to save these information in two ...
-1
votes
1answer
86 views

Catchable fatal error: Object of class Zend\Form\View\Helper\FormLabel [closed]

Catchable fatal error: Object of class Zend\Form\View\Helper\FormLabel could not be converted to string in (...)\module\Application\view\application\produtos\form.phtml on line 2 form.phtml ...
0
votes
2answers
71 views

Get Form Input from Zend Framework

I am venturing into the Zend Framework and decided to build a simple application to practice with. The app I am building is a simple calculator that allows a user to add, subtract, multiply and divide ...
1
vote
2answers
258 views

ZF2 + Doctrine2 + DoctrineObject Hydrator: Null value for ManyToOne relation

For the category structure on my proejct I'm building an entity. For the add form I use the DoctrineObject hydrator. When there is a value for the $parent this works fine, but whe there is no parent ...
0
votes
1answer
35 views

Zend_Form not valid but no error messages

i have a strange Problem with one of my Zend_Forms: isValid() correctly states that my form isn't valid but i do not get any error messages. How could that happen? Heres the code, nothing special ...
1
vote
0answers
71 views

Zend Form captcha not working

I am using following code to create a captcha on a contact form. The code works fine on one my hosting but since I moved my site to 1and1.co.uk the captcha has stopped working. <?php ...
0
votes
1answer
19 views

Applying decorator to specific type e.g. text or select

I'm know how to add custom decorators and use view helpers to set decorators for named elements. Is their a method or an attribute that would allow me to set a default decorator for all textareas or ...
0
votes
1answer
13 views

Why does this Zend_Form NotEmpty validator give me an error message?

For Zend Form Elements which are required I normally do this: $this->addElement('text', 'loginEmail'); $this->loginEmail ->setLabel('Email') ->setRequired(true); I was ...
1
vote
1answer
118 views

Zend Form TextArea with countdown characters and StringLength Validator - different calc

In my form i have a zend_form_element_textarea. For this element i add a validator StringLength like this: $this->addElement('textarea', 'text', array('label' => 'F_MESSAGE_SMS_TEXT', ...
0
votes
1answer
19 views

zend form how to check if a selection exists

If I have declared a multiselect in zendform class how would I check if it existed in controller e.g. in zendform I have declared select element "mySelectElement" with options [foo, bar] how woul I ...
0
votes
1answer
67 views

ZF2 Form ViewHelper row inside a label

I need to generate a form with correct labels in Zend Framework 2.1.4 using the standard view helper. When I use : echo $this->formLabel($form->get('Title')); echo ...
0
votes
1answer
42 views

How to disable/remove a validator of a element depending on the value of another element?

I have a fieldset that looks like the following: namespace Store\Form; use Zend\Form\Fieldset; use Zend\InputFilter\InputFilterProviderInterface; class ProductFieldset extends Fieldset ...
1
vote
1answer
83 views

How to set position for checkboxes/radiobuttons in Zend Framework 2?

I tried it so: <?php echo $this->formRow($form->get('weekday'), Zend\Form\View\Helper\FormRow::LABEL_PREPEND); ?> But the labels are still staying behind the checkboxes. How should I ...
0
votes
1answer
354 views

Zend Framework 2 Doctrine 2 - Multiple Forms same View

I have created a ZF2 project with the following dependencies: "php": ">=5.3.3", "zendframework/zendframework": "2.*", "zendframework/zend-developer-tools": "dev-master", ...
0
votes
0answers
10 views

Zend Form DisplayGroup shows fields twice

I'm building a form using Zend 1.12 which includes Submit and Cancel buttons, which I'd like to put within a footer div of my own creation. I'm using the following: $this->addElement('button', ...
0
votes
2answers
70 views

How to implement an application/website wide form in Zend Framework 2?

In my ZF2 aplication I have multiple modules and one of them is "Search". It provides a search form, the search logic and a list of courses found in the database: Form class namespace Search\Form; ...
0
votes
0answers
109 views

Form Element decorators Zend Framework

I'm using Zend Framework 1 and this library to integrate Twitter-bootstrap. It's great library, but I want to add new decorators for it (for Zend Form Element File), so that it looked like here So ...
1
vote
0answers
179 views

ZF2 Form Collections - filtering empty records

I'm trying to work out how to filter empty records from a form collection. With my application I have 2 entities, Competition and League. A competition may have zero or more Leagues. So I create ...
0
votes
0answers
16 views

zend_form_element_select dynamic change set of values

I have a common Zend form <?php class Application_Form_UpdateForm extends Zend_Form { public function __construct($option=NULL) { parent::__construct(); $chiefs = new ...
1
vote
4answers
259 views

Zend Framework 2 - Removed form element causes validation to fail

I use a certain form in several places. In one of them I need to ignore a form element which I set programmatically after the validation. Because it's just an exception I don't want to create a new ...
1
vote
1answer
60 views

Zend Framework. How to add extra class to label

My problem is after the form has been generated, the label class has assigned to a default which is optional and the html code looks like this: <div class="form_wrapper"> <label ...
1
vote
2answers
317 views

zf2 form validation (zfcAdmin and BjyAuthorize related)

I'm facing validation problems integrating my custom module in zfcAdmin and BjyAuthorize. My form class: ... $formOptions = $this->settings->getFormSettings(); foreach ($formOptions as ...
0
votes
0answers
36 views

Zend form adding a main label to checkbox

I add multicheckbox elements like this $this->addElement('multiCheckbox', 'mycheckbox',array( array ( 'label' => 'mainlabel', 'class' => 'multiCheckbox', 'title' ...
0
votes
1answer
68 views

Zend Framework 2 Custom elements using ServiceManager not work

I want create a custom element and use the short name for add the element into Form, using the new ServiceManager tecnique for ZF2 V.2.1+ I am try to copy the same sample of the zend documentation ...
0
votes
1answer
204 views

ZF2: How to set form elements to be ignored?

Somehow I can't get Form Elements in Zend Framework 2 to be ignored. All of this doesn't seem to work: $this->add(array( 'name' => 'submit', 'ignore' => TRUE, 'attributes' => ...
0
votes
1answer
26 views

Zend_form set Required description

I have a form with Zend_From and my form by default is wrapped by DL, DT and DD tags, and that's fine! I have to add * <-- this sign to the required fields. First I decided to add explicitly this ...
0
votes
3answers
140 views

Zend Framework 2 Inject Service Manager into Fieldset

I just update my ZF2 to V2.1.4 so that I can use the init method of the Zend\Form class for inject the ServiceLocator into FieldSet as explains the Zend documentation. I have in the Global.php and ...
4
votes
1answer
119 views

“IsImage validation” or “MimeType Validator” in Zend Framework2

I am using formFilter method (factory method) to validate forms in Zend Framework 2. Please somebody help to add file upload validation. Please specify how to use "IsImage validation" or "MimeType ...

1 2 3 4 5 31