zend-form Questions

6

Solved

I´m developing an application using Zend Framework 2 and I use FormRow helper to render a label, the input and errors (if present) in a Form. //within the view echo $this->formRow($form->get...
Thrash asked 7/12, 2012 at 15:4

3

Solved

How to edit the button content of a Button element (of a ZF2 form)? I can set a label, but i would like to insert some html code inside it. $this->add(array( 'type' => 'Button', 'name' =&...
Ilowell asked 14/2, 2014 at 10:32

1

I have a subform($fileUploadSubform) within a subform ($requestSubform). I called setElementsBelongTo("requestRow[$rowNumber]") on the parent subform ($requestSubform). $requestSubform= new Zend...
Ginkgo asked 12/8, 2015 at 5:46

1

Solved

Today I updated to ZF 2.4 to use float validator but unfortunately i realized that my file upload form field gives unexpected error messages. Here is my form object $this->add([ 'name' => ...

6

Solved

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.'); $form->...
Brag asked 22/12, 2009 at 0:14

3

Solved

this is probably a very simple task, but currently I'm failing horribly at it. I just want to add a custom error to my form when my authentication fails. What i tried $form->setMessages(array(...
Guaranty asked 15/10, 2012 at 13:28

2

Solved

I'm trying to test my form. It will be constructing other objects, so I need a way to mock them. I tried passing them into the constructor... class Form_Event extends Zend_Form { public function ...
Fruitful asked 17/6, 2010 at 17:12

4

Solved

I want to fetch posted data. But I am using no form. The data is postet by a jquery script with method post and I would like to fetch it. I know how to fetch parameters $id = $this->getReques...
Principe asked 19/9, 2010 at 13:32

7

Solved

I know I can remove the extra stuff from each element individually like so $button ->removeDecorator('DtDdWrapper') ->removeDecorator('HtmlTag') ->removeDecorator('Label'); I was wond...
Wingless asked 16/11, 2010 at 4:25

11

Solved

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> <dd>...
Seaman asked 26/1, 2009 at 23:51

5

Solved

I'm using the CSRF hidden hash element with Zend_Form and trying to Unit Test the login but don't know how to write a Unit Test to include that element. Looked in the docs and read as many tutorial...
Partite asked 10/7, 2009 at 18:26

3

Solved

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, ...
Cigarette asked 3/2, 2013 at 1:36

5

Solved

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. ...
Skiba asked 4/5, 2011 at 11:43

4

Solved

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 ren...
Abnaki asked 28/9, 2011 at 21:7

6

Solved

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 firs...
Carsoncarstensz asked 19/3, 2010 at 3:18

4

Solved

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 ...
Fonseca asked 7/12, 2008 at 18:18

4

Solved

If I have a form element that has multiple validators attached to it (3 in this example), how would I use addErrorMessage to create custom error messages when each unique validator fails. Is there ...
Ssm asked 2/10, 2010 at 7:44

5

Is there a way to disable notInArray Validator in Zend Framework 2. All the info on the internet shows how to disable the notInArray Validator in Zend Framework 1, for example in this fashion If ...
Kanya asked 1/11, 2012 at 9:58

4

Solved

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(!) tha...
Closed asked 18/12, 2012 at 11:19

3

Solved

I just can't figure it out how to set custom validator messages in Zend_Form object. Here is an example code. $this->addElement('password', 'password', array( 'label' => 'Password', 'decor...
Sharasharai asked 1/3, 2012 at 14:0

3

Solved

Hi I am new in zend framework. I want to set ready only property on input box in zend Form. example as we do in html <input type ="text" readonly="readonly" /> this is my zend code: $thi...
Chisholm asked 5/6, 2013 at 6:23

3

Solved

In Zend Framework 2.1.4 I am using the standard form view helpers to render out my form elements. When I try: <?php echo $this->formRow($form->get('Title'));?> The label text and in...
Bronez asked 11/4, 2013 at 10:59

2

Solved

How do i create this with $this->formSelect() ? <select multiple> <optgroup label="a"> <option>1</option> <option>2</option> </optgroup> <optgrou...
Lixivium asked 22/2, 2012 at 19:59

1

Zend driving me insane this afternoon, I need to add a inside the tag: <label><span>Some Text</span></label> Here is my Form decorators but it will not work for me at all...
Amaranthaceous asked 20/9, 2013 at 14:27

4

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'); $word->a...
Radmilla asked 15/7, 2011 at 10:6

© 2022 - 2024 — McMap. All rights reserved.