zend-form Questions
3
Solved
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(
'captcha' => 'Imag...
Haply asked 27/2, 2011 at 6:7
3
Solved
I'm learning Zend Framework using their manual at framework.zend.com.
where can I find the full list of all the validators and filters
that can be used in a Zend_Form ?
Using Zend Framework 1.11....
Maurita asked 3/6, 2011 at 9:7
3
Solved
I just can't find the answer... Is there a way to pass a CSS class to my open-form-tag?
For example I want to create a form with the class ''form-horizontal''.
The docs say this:
// Render the o...
Geniality asked 18/12, 2012 at 8:47
7
Solved
I am using this ViewScript for my standard form elements:
<div class="field" id="field_<?php echo $this->element->getId(); ?>">
<?php if (0 < strlen($this->element->...
Gantz asked 26/1, 2010 at 23:19
3
(I follow this post to got the logic how to use Zend_Form without using decorators.)
within the action I create Zend_Form object and assigned the form to the view before rendering it:
public func...
Salade asked 2/9, 2009 at 16:20
1
I'm learning zf2 and I'm facing a problem involving 2 (eventually more) modules working together. Note, I've carefully read this post (and the related one) which helped me a lot. I'm going to expla...
Chaussure asked 21/3, 2013 at 15:6
2
Solved
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 bel...
Coseismal asked 16/1, 2009 at 22:8
5
Solved
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',
array('Html...
Multicellular asked 22/4, 2009 at 19:23
3
Solved
How to add an error message to Zend Form element after the form was already validated?
I'm trying to add error mesages I get from Zend_Auth (now I'm displaying them using flashMessenger).
I tried...
Westwardly asked 23/3, 2010 at 13:13
6
Solved
I have the below line of codes
$day1 = new Zend_Date('2010-03-01', 'YYYY-mm-dd');
$day2 = new Zend_Date('2010-03-05', 'YYYY-mm-dd');
$dateDiff = $day2->getDate()->get(Zend_Date::TIMESTAMP) ...
Garrido asked 25/3, 2010 at 7:57
2
Solved
I implemented basically this strategy.
The main difference is (I guess) that I use Doctrine2.
The constructor class is called (a test echo is printed) but the two functions extract() and hydrate(...
Muraida asked 3/1, 2013 at 14:5
1
Solved
As mentioned here I'm building a custom hydration strategy to handle my related objects in a select box in a form.
My form looks like this:
$builder = new AnnotationBuilder($entityManager);
$form...
Pretender asked 3/1, 2013 at 16:0
1
Solved
I want to change the way ZF2 shows the form elements. I think I have to create my own view helper but I don't know how.
I Googled for it but didn't find any useful resource.
Cognoscenti asked 14/12, 2012 at 20:48
10
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:
Val...
Wachter asked 20/1, 2009 at 2:10
3
Solved
I have a Zend_Form with file element like this:
->addElement('file', 'image', array(
'required' => false,
'label' => 'Venue Image',
'validators' => array(
array('IsImage', false),
...
Abcoulomb asked 26/3, 2010 at 19:50
3
I am trying to upload a file using Zend Framework 1.7.4, but have not been successful. I have read Akrabat's tutorial, which was helpful but when i used those techniques in my project I was not abl...
Goodyear asked 20/3, 2009 at 8:26
4
Solved
I am using zend_form (part of Zend Framwork) to create a form and found when I add a set of checkboxes using Zend_Form's multicheckbox element (Zend_Form_Element_MultiCheckbox) the code that is out...
Septillion asked 3/6, 2011 at 15:48
2
Solved
I have 5 text form
$number1 = new Text('number-1');
$number2 = new Text('number-2');
$number3 = new Text('number-3');
....
with the relative filters
foreach(...)
$input = new Input($elementNam...
Savate asked 3/10, 2012 at 10:52
1
Solved
I have a form.
It's checked: $isValid = $form->isValid($this->getRequest()->getPost())
The problem is errors are empty.
$form->getErrors() returns array {"field1": [], "field2": [], "f...
Winslow asked 30/9, 2012 at 2:29
4
Solved
I am using reCaptcha with zend form, like this:
$recaptcha = new Zend_Service_ReCaptcha('xxx', 'yyy',
NULL, array('theme' => 'white'));
$captcha = new Zend_Form_Element_Captcha('captcha',
...
Brazell asked 1/9, 2012 at 23:37
1
Solved
I wonder if I'm doing something wrong or if this is a bug in ZF2: When i'm trying to set some data on a form, validate it and retrieve the data it's just an empty array.
I extracted this code from...
Retroactive asked 10/8, 2012 at 7:53
3
Update I was able to get this to work by creating a custom Label decorator, which extended Zend/Form/Decorator/Label.php. I added a setTagClass() method to it and overrode the render method to crea...
Picrate asked 4/3, 2010 at 22:28
1
Solved
I'm trying to get error messages from Zend_Form and response as json. What is the best practice of getting Zend_Form errors and replying as json?
<?
class SomeController extends Zend_Controlle...
Saunderson asked 31/7, 2012 at 11:33
10
Solved
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 d...
Beekeeper asked 14/8, 2009 at 13:29
2
Solved
Is it possible to wrap the form element in a div AND the whole block (label, element, errors etc) in another div using the HtmlTag decorator? I'd like to use Twitter's Bootstrap with Zend_Form like...
Hun asked 28/8, 2011 at 15:42
© 2022 - 2024 — McMap. All rights reserved.