Tagged Questions

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

31
votes
10answers
24k views

Zend Framework: How do I remove the decorators on a Zend Form Hidden Element?

I'm trying to remove the default decorators on a hidden form element. By default, the hidden element is displayed like this: <dt>Hidden Element Label (if I had set one)</dt> ...
28
votes
14answers
13k views

Zend Form: How do I make it bend to my will?

I've read the manual many times, I've scoured the posts offered by Google on the subject, I have even bought a couple of books that deal with ZF. Now, why am I still confused? I can, using Zend_Form, ...
15
votes
8answers
5k views

Zend Framework forms, decorators and validation: should I go back to plain HTML?

I am currently working on a pretty large application which contains a lot of forms. Up to this moment, I have always been writing my forms by hand and writing my own validation logic, but I have ...
12
votes
3answers
12k views

Zend Framework form with jquery

Any one a idea how to simply create a form with Zend_Form and jquery? I want to use Zend_Form to validate the form so I don't have to dual script the form in JavaScript and PHP. Thank you, Ivo ...
9
votes
5answers
3k views

How to use Zend Framework Form Hash (token) with AJAX

I have included Zend_Form_Element_Hash into a form multiplecheckbox form. I have jQuery set to fire off an AJAX request when a checkbox is clicked, I pass the token with this AJAX request. The first ...
9
votes
2answers
10k views

Zend Form: How to set the length of a text input or textarea element?

By default Zend Form Text elements don't have a width specified. Textarea elements have a default of rows="24" and cols="80". But when I set a different value... $body = new ...
9
votes
9answers
8k views

Zend_Form -> Nicely change setRequired() validate message

Say I create a text element like this: $firstName = new Zend_Form_Element_Text('firstName'); $firstName->setRequired(true); Whats the best way to change the default error message from: Value ...
8
votes
3answers
312 views

Where does Zend_Form fit in the Model View Controller paradigma

The Zend Framework is mainly meant for MVC use. One of the very usefull components is Zend_Form. I have a bit trouble finding the place of Zend_Form. Is it part of the view, model, or controller and ...
8
votes
6answers
6k views

How do I use ViewScripts on Zend_Form File Elements?

I am using this ViewScript for my standard form elements: <div class="field" id="field_<?php echo $this->element->getId(); ?>"> <?php if (0 < ...
8
votes
3answers
791 views

In a Zend_Form, how to avoid Zend_Validate_Email from generating multiple errors?

I am building a ZendFramework application which as a login form asking for an email address and password - it seemed to make sense to validate the email address before hitting the database with the ...
8
votes
2answers
5k views

Zend_Form - Array based elements?

Using Zend_Form, how would I create form elements like this: <input type="text" name="element[1]" value="" /> <input type="text" name="element[2]" value="" /> // etc...
7
votes
3answers
265 views

A Typical Issue with login using Zend_Form

Iam facing a typical issue with a form submit using Zend framework. Basically I have written a simple code to login a user, but this came out of the blue. The code to show the form is pretty standard ...
7
votes
2answers
2k views

Zend Form SetAction Using Named Routes

I have a form that I am trying to set the action for. I want to declare the action inside my form file (which extends Zend_Form) instead of in a controller or view, using a route I have created in my ...
7
votes
7answers
6k views

How to verify password field in zend form?

In my form, I'm trying to verify that the user fills in the same value both times (to make sure they didn't make a mistake). I think that's what Zend_Validate_Identical is for, but I'm not quite sure ...
7
votes
3answers
7k views

Display Zend_Form_Element_Radio on one line

The radio buttons in Zend Framework are displayed in a column (one option per line). How can I remove the br tag from the markup so that all radio options stay in one line? My decorators are: ...
6
votes
4answers
343 views

Write hyperlink inside the Zend Form?

I am using Zend-Framework in my project. I made a login form using the Zend Form that contains the User Id and Passwords fields with a submit button. Everything is working fine in the login form. How ...
6
votes
4answers
4k views

Action View Helper in Zend - Work around?

I'm working on building up an interface that I want to function as a "tabbed browsing" sort of function. Each of these tabs has already been written as an action and the tabbed interface works fine ...
5
votes
1answer
180 views

extending Zend_form_element_select, the errors disappear

I have a drop down Element_Select that I'm turning into a custom element Element_SelectCustom so that I can populate it with values directly. This is the custom element <?php require_once ...
5
votes
1answer
557 views

Creating a form view in Zend

Is there a reliable way to create a custom view for a Zend_Form? The decorators are pretty cryptic and using them in fancy ways sometimes is so complicated that I'd prefer to just write the HTML by ...
5
votes
2answers
392 views

Why this zend example stops working when I add a hash to the form

I'm following this example tutorial project code: http://akrabat.com/wp-content/uploads/zf-tutorial-layoutform.zip tutorial: http://akrabat.com/zend-framework/a-form-in-your-layout/ The project ...
5
votes
2answers
2k views

Zend Framework: Working with Form elements in array notation

I would like to be able to add a hidden form field using array notation to my form. I can do this with HTML like this: <input type="hidden" name="contacts[]" value="123" /> <input ...
5
votes
6answers
5k views

Add some html to Zend Forms

Im looking for a simple bit of code that will let me add the following html into my zend form: <div id="wmd-button-bar" class="wmd-panel"></div> Thats it, it needs to be above my ...
5
votes
3answers
776 views

Zend Form Validator : Element A or Element B

I have two fields in my Zend Form, and i want to apply the validation rule that ensures the user enters either one of the these two fields. $companyname = new ...
5
votes
4answers
5k views

Zend Form: Checkbox element displays as hidden field?

I would like to add a simple check box to my form: $element = new Zend_Form_Element_Checkbox('dont'); $element->setDescription('Check this box if you don\'t want to do this action.'); ...
5
votes
4answers
2k views

odd Zend_Form_Element_File behavior

I have the following element in my form: $attachment = new Zend_Form_Element_File('attachment'); $attachment->setLabel('Attach File (2MB Max)'); $attachment->addValidator('Count', false, 1); ...
5
votes
1answer
3k views

Zend_Form radio element

Below is sample code to create a radio button element with Yes/No options in Zend_Form. Any ideas on how to set the required answer to Yes, so if No is selected, it'll fail validation? The code below ...
4
votes
2answers
345 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
225 views

Validating number of options in Zend Form Multiselect

I have an Multiselect Zend Form element with many options. I have to validate the number of selected options (at least N options and at most M options are selected). I want the error message to be ...
4
votes
1answer
216 views

Zend_Form : data table with checkboxes

I'd like to have a table of data coming from the DB in my form element, looking like the following : +-----+-------------------------+-----------------------+ | | Number | Name ...
4
votes
1answer
62 views

set lable to elements created by createElement method in zend framework

Hello All, I'm looking for someone who can tell me how to set a label to an element created by createElement() method in zend form. I want to create an array of input elements with label. Thanks ...
4
votes
2answers
258 views

how to set css for Zend form?

I m New to Zend framework and I have created a login form in PHP and I want to set Its css style but I don't know how to set it. Please Suggest some code or link..... Thanks in Advance
4
votes
2answers
390 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
3answers
172 views

Zend_Form array notation with no indices

I would like to create a form that allows the user to input any number of values, each in a separate text field using an array notation. The example expected HTML output is: <dd ...
4
votes
1answer
266 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
3answers
2k views

zend form custom attribute in select option?

I want know how to add custom attribute for option in a select field of Zend form. PHP: $option_values = array("multiOptions" => array( "US" => "United States", "CA" => "Canada", ...
4
votes
2answers
693 views

Customize zend_form Captcha output?

I'm using captcha in my zend_form. $captcha_element = new Zend_Form_Element_Captcha( 'captcha', array('label' => 'Write the chars to the field', 'captcha' => array( ...
4
votes
1answer
341 views

How to change the tag of the default Errors decorator within Zend_Form?

I'm trying to change the tag of the Errors decorator, currently it's: <ul class="errors"> <li>error message</li> </ul> I'd like to remove the <ul> wrapper and change ...
4
votes
1answer
421 views

Zend Form multiselect array

I am using the Zend Framework and have setup a normal Zend Form, what I want to try to achieve is to have a button (with some javascript) that says add more and it adds another drop down menu same as ...
4
votes
2answers
377 views

Z_Form :: Adding a custom error message to zend_form inside Action Controller

I'm new to ZF and I'm discovering how to use Zend_Form and utilize it's capability like validating and filtering input values. I already know the basic of Zend_form like building a form and add ...
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 ...
4
votes
2answers
636 views

Zend Form: How to create a 'create account form' that checks for unique username?

I have a form where a user can create an account. The username column is unique in the database. If a user tries to create an account with a duplicate username, it throws an exception. This ends up ...
4
votes
1answer
4k views

How to disable a form element in a Zend Form?

I want to display a Zend Form with one of the elements shown as disabled. I'm setting the value so the user can see it, but I want to disable it so the user can't edit it. This may also involve some ...
4
votes
2answers
5k views

Zend Framework Checkbox Decorators

What I am trying to accomplish is to have checkbox labels display after checkbox input fields (to the right of them). I am using these decorators now: private $checkboxDecorators = array( Label, ...
4
votes
4answers
5k views

Zend Framework Zend_Form Decorators: <span> Inside Button Element?

I have a button element that I've created like so: $submit = new Zend_Form_Element_Button('submit'); $submit->setLabel('My Button'); $submit->setDecorators(array( 'ViewHelper', ...
4
votes
4answers
6k views

Zend_Form: how to check 2 fields are identical

I have created a form to add a user to a database and make user available for login. Now I have two password fields (the second is for validation of the first). How can I add a validator for this ...
3
votes
4answers
199 views

Use zend-decorator to format Zend_Form_Element_Radio in a table column with oher Zend_Form_Elements in rows

I want use decorators to format as table the following Zend_Form, placing a description in the first column and the Zend_Form_Element_Radio's options in second column and add 2 select in every row as ...
3
votes
1answer
137 views

how to set zend form details in application.ini

Is there a way to set zend form details in the application config file (application.ini) in Zend Framework. I am looking for a way to move following details to config A way to disable form ...
3
votes
1answer
89 views

Zend MultiCheckbox: set maximum selection

Here I am again with an easy question. Is there an existing zend validator to set a maximum to the boxes an user can select. I want them to select no more than 3 boxes. I've searched the web and the ...
3
votes
3answers
82 views

Set a single error message for a Email field in Zend

I am facing an small issue regarding the Email Validation in my Zend Form. My Code for the Email field is as $emailId = new Zend_Form_Element_Text('email'); $emailId->setLabel("Email Adresse") ...
3
votes
1answer
168 views

Using multiple PregReplace filters on a Zend Form element

I want to be able to add multiple PregReplace filters on a single Zend Form element. I can add one PregReplace filter using the code below: $word = new Zend_Form_Element_Text('word'); ...

1 2 3 4 5 19