Zend Framework provides the form class in library to create the form. The from has different elements. This tag is related to form elements provide by zend form class.

learn more… | top users | synonyms

0
votes
0answers
17 views

Zend Framework 2 - DateSelect Empty Option

The following works, it sets the select list to today's date on page load. However, on submit, does not update to the selected date. How is it possible to select today's date on page load, however, ...
0
votes
0answers
5 views

How do you add a Zend_Form_Element_Hash to a page and validate it without creating a form?

I often have pages where I submit the data via AJAX; for various reasons I don't need an entire instance of a Zend_Form object. However, in order to prevent cross-site request forgeries, I want to add ...
0
votes
0answers
25 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
13 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 ...
0
votes
0answers
13 views

How to set custom data attbributes with zend form select?

I am using Zend_Form_Element_Select to create a select form element. Here's how the inner HTML is rendered: <option value="9" label="Biscuits">Biscuits</option> <option value="10" ...
0
votes
0answers
67 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. ...
2
votes
2answers
61 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
1answer
25 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 ...
1
vote
1answer
72 views

How to remove a validator from a Form Element / Form Element ValidatorChain in Zend Framework 2?

I read this question on SO: "how to disable inArray validator forms in zend framework2" and was trying to find it out, but couldn't find any way to detach/remove the InArray Validator. But InArray is ...
0
votes
0answers
39 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
29 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' => ...
1
vote
1answer
92 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
0answers
128 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
4answers
277 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 ...
0
votes
1answer
71 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
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
2answers
183 views

ZF2 form element description

in ZF1 form and form elements had a setDescription method that was outputted as <p>description here</p> in view .... ZF2 seems that doesn't have this method so my question is how can i ...
0
votes
2answers
68 views

How to compare value among two texfields using zend form?

I've a form with 2 text-fields, namely minimum-amount & maximum-amount. I would like to know whether it is possible for me to compare the values in text-field "minimum-amount" with the value in ...
0
votes
0answers
64 views

ViewScript decorator in Zend loses values of Zend_Form

I use Zend Framework 1.12. I have forms which is filled with values from a database, as default. And those values may be changed by user, to be updated in database. Form is showing without problem, ...
0
votes
0answers
24 views

render zend element errors before element

I have standard Zend form but I need to display error messages before field or after all elements in form. $searchstring = new Zend_Form_Element_Text('searchstring'); ...
1
vote
1answer
191 views

Zend_Form_Element_File and “File exceeds the defined ini size” issue

I'm using Zend_Form_Element_File to validate certain file properties. The file input element in question is created dynamically - ie. it can be in the form, but doesn't need to; however, if it is, and ...
2
votes
1answer
222 views

Zend Framework 2 DateSelect/MonthSelect formatting

With the newly released version of Zend Framework 2, two new form elements were added; DateSelect and MonthSelect. I want to use the former, which adds three selects; day, month and year. However, I ...
0
votes
2answers
52 views

How can I render label to the right of the element?

I am adding a consent checkbox to an existing form. I am not able to render the label to the right of the checkbox. What am I doing wrong? Please note that the check box has created using ...
1
vote
1answer
107 views

Zend_Form_Element_File::getValues() renaming uploaded file

I'm fairly new to Zend Framework and I've encountered something strange, which I'm hoping somebody will be able to explain. Consider following code: <? class Form extends Zend_Form { public ...
0
votes
0answers
95 views

Custom Zend Form Checkbox HTML output

I'm having trouble trying to get my Zend_Form_Element_Checkbox to render like the HTML provided below. The desired output should have the checkbox positioned to the left of the label and the label to ...
0
votes
1answer
113 views

Passing values as arguments of a function defined in onchange() event

I want to pass a value as an argument of a function. The function is defined on onchange() of a text field. I am using the following code..I use zend form to create the element. $filedName = ...
1
vote
1answer
90 views

Zend_Form_Element conditional class on HtmlTag decorator (on errors)

In one of my web projects I'm building with Zend Framework, I have a form with the following structure: <form> <fieldset> <h2>Header</h2> <ul> <li> ...
0
votes
1answer
136 views

Add option to form element in the controller

Related to this post I want to transform a manual adding of a form element to Annotations in my Entity. The code looks like this: $this->add(array( 'name' => 'formElementName', ...
0
votes
0answers
167 views

Zend Framework 2 - Annotation forms - How to utilize setOrder()

I'm using ZF2 AnnotationForms and want to order my form fields. The reason is that I add programatically more fields and they should not be at the end of the form. I found the hint for the setOrder() ...
0
votes
3answers
95 views

How can I override all error messages for a form element?

I can use the following method to override all the error messages of a zend form element. $name->setRequired( TRUE ) ->setAttrib( 'id', 'fullname' ) ->addErrorMessage( 'Please ...
1
vote
2answers
296 views

Zend Framework 1.12 select element - name array issue

When using Zend_Form_Element_Select in conjunction with setIsArray for some reason Zend Framework 1.12 assumes that you want a multiple select. This seems like a strange behavior of the framework, so ...
4
votes
2answers
2k views

Zend Framework 2 - Form Element Decorators

I want to force the Zend form into Twitter Bootstrap style. I currently iterate through the form fields and write the form info into my bootstrap div construction. I saw in Zend Framework 1(!) that ...
0
votes
1answer
166 views

Zend Framework: How to add custom html to Form Element?

I want to add Custom HTML ("Login" link near the "Register" button) in Register form with ZF 1.12. When I do that with: $submit = new Zend_Form_Element_Submit('register'); ...
0
votes
2answers
296 views

Zend Form, can't take input values if there's a default value in element

I'm using Zend Framework 1.12, making a page which have multiple forms in it. I use a single master form and subforms in it. Therefore, I have just one Validation code part. These subforms point to ...
2
votes
1answer
171 views

How to add jQuery event callback functions to Zend Form element

I'm creating a Zend Form in which I want to insert a date span. The form is enhanced using the jQuery UI library, so I have a date from and a date to field, which are both datepicker elements. This is ...
0
votes
1answer
168 views

Update Zend form element value in validator

I have a custom Zend Validate class extending Zend_Validate_Abstract The validator is a file validator running an external command line tool that both validates and processes the file. If the file is ...
0
votes
1answer
220 views

Fatal Error: call to member function addMultiOptions() on a non object in zend

I have a form element companyState which is a drop down box $companyState = $this->createElement('select', 'companyState') ->addMultiOptions( array ( '' ...
0
votes
1answer
64 views

Zend Framework: form with label that has a few styles

I would like to create a form with a label that would contain two different styles, for example: "Email (enter your email):" How can I do that? Right now I am using the label attribute of the ...
1
vote
2answers
68 views

What causes html tags to not render in Zend_Element error decorators?

I am attempting to insert a link into the error message displayed on a form. in my action I'v done this. $this->view->editForm->getElement('value')->addError('this type/value ...
0
votes
2answers
131 views

how to decrypt password value in Zend Framwork?

My problem is when i enter password in zend password element it show in bullet sign(encrypted formate) and when i inspect that in chrome or Mozilla it show password in plain text.how can i encrypt ...
0
votes
3answers
65 views

is possible to create form element in view same as in controller

1st way to creating form elements like below - *In Controller $email = new Zend_Form_Element_Text('email'); $email->setLabel('Email address') ->addFilter('StringToLower') ...
0
votes
0answers
65 views

how to do hide and show elements in zend?

I had written the hide and show script for the two elements by checking checkbox in zend, but the value 1 will be sent to the function for both check and uncheck, So it only shows the element but it ...
2
votes
1answer
233 views

Can't set selected value for Zend_Form dropdown element

While editing all fields in a form are populated correctly except dropdown menu and I can't figure out what's wrong. Here's my form $katModel = new Model_Kategoria(); $kategorie = ...
0
votes
1answer
204 views

Db_NoRecordExists error message is overwrite by ->addErrorMessage()

My Db_NoRecordExists message is overwite by addErrorMessage. Code: $emailaddress = new Zend_Form_Element_Text('EmailAddress'); $emailaddress->setRequired(true) ->setAttrib('size', ...
1
vote
1answer
248 views

Zend_Form error messages

I have a custom markup for my zend_form and i try to set a css class (class="hasErrors") to my input field. My rendered form elements look like this: <div id="teamname-element" class="formRow"> ...
0
votes
0answers
149 views

zfdata grid in edit mode

I am using ZF data grid. It works fine But when I try to edit the record it shows edit form with the fields from the 1st mysql table not from the data grid row. I am using join query to disaply the ...
1
vote
3answers
664 views

What is best way to add required mark with label decorator - Zend

i have a question about using Zend_Form_Decorator_Label,in order to get following result when form element is required i need to get Label-text * and i'm wondering how to achive that in most reusable ...
0
votes
1answer
87 views

Zend Select Element not working

I have the following Zend_Debug value for Albums and Category in my IndexController: array(4) { ["id"] => string(1) "1" ["artist"] => string(18) "Paula Abdul Rashid" ["title"] => ...
1
vote
2answers
97 views

In zend pass values to view by concating array in controller

I have below array where I am getting this array by executing an MySQL query in zend. I want to concatenate all the octent and get the result as 131.208.0.0 and 141.128.0.0 to pass to view to display. ...
2
votes
1answer
262 views

set id and class for each element in MultiCheckbox at zendForms

we have a php project using zend framework and in a page we have multicheck box for this i use this code to create multiCheckBox: $mozoo = new Zend_Form_Element_MultiCheckbox('mozoo'); then i ...

1 2 3 4 5 6