0
votes
2answers
48 views
The best way to render a Zend_Form with existing markup
Hello!
I want to use Zend_Form because of its validation and filters etc. But the markup for forms is already done. Even worse, it isn't very standardized, so writing my custom dec …
2
votes
2answers
47 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 except …
0
votes
1answer
23 views
Get values from controller to form
Hi there,
I'm using the PHP Zend Framework.
How can I get the values from the controller sent by:
$infoForm=array(
// I get these values from a DB
'idCity' => $idCity ,
'idRest …
0
votes
1answer
6 views
Se4t Escaping for Zend_Form element description to false
I'm having some trouble dealing with this.
This is inside my Zend_Form:
$about = $this->addElement('textarea', 'about', array(
'label' => 'About:',
…
0
votes
1answer
142 views
Zend Form and nested fieldsets/containers?
I have a form. I have a single element that needs to be wrapped in a div or fieldset (for formatting). Then I have two groups of elements, including the above, that I want to wrap …
0
votes
2answers
17 views
Phone Number Validator/Filter using jQuery or Zend Form?
I'm thinking about adding some validation/filtering to the phone number field of my Zend Framework application. Not sure if this is something I should do or not.
I thought it migh …
0
votes
1answer
13 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 …
0
votes
1answer
37 views
How to test my forms in Zend Framework 1.8+?
So I've set up testing in my ZF 1.9.5 application thanks to this tutorial, I am able to test my controllers, now I want to create a test for a form. However, I'm having the problem …
11
votes
13answers
3k 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 c …
5
votes
7answers
974 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 lo …
0
votes
1answer
45 views
Dynamically add a Dojo-enabled Element in Zend
I'm writing a form using Zend_Dojo_Form.
Everything goes fine, unless I dynamically insert elements into the form (using ajax, the user can add more elements by clicking a [+] but …
0
votes
1answer
19 views
jquery autocomplete and datepicker compatability issue?
Hi,
I have a form that is constructed using ZendX_JQuery_Form, the form contains 2 auto complete inputs and 4 datepickers. The datepickers all worked absolutely fine until I added …
1
vote
1answer
47 views
Zend_Form from ini, set multiOptions with string values
I'm trying to configure a form for Zend_Form using Zend_Config_Ini, and wish to set the options for a select element in the .ini file.
This works fine for options with single stri …
0
votes
2answers
31 views
File Upload in Zend
Hello every body,
i m using zend form & create its elements using the code below.
// To create text box.
$txt = $this->CreateElement('text', 'txtName');
$txt = $this->setLabe …
1
vote
3answers
123 views
How can I protect users from cross-site request forgeries using the Zend Framework?
My program uses Zend Framework, and I wanted to protect users from CSRF using Zend_Form_Element_Hash. But It doesn't seem to work.
For example, my code for Logout Form is
$ex …
