Tagged Questions
The zend-form-element tag has no wiki summary.
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 < ...
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
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
3answers
775 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.');
...
4
votes
2answers
692 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(
...
3
votes
1answer
88 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
1answer
88 views
Zend framework decorators question
I need to add some random html content with text before and after my input field.
I know I can use description decorator and set escape option to false - this way I can simply inject arbitrary html ...
3
votes
1answer
168 views
File upload + hash gives me a problem when size is greater than max size
I'm noticing something strange and was wondering if someone could test my code on their side and let me know if they get the same thing.
I have a real simple form (see full form code and action code ...
3
votes
2answers
2k views
Appending or Prepending HTML Tags to Zend Form Element
For the purposes of styling I have the need to put an opening <div> at the beginning of one element, and a closing </div> tag at the end of another. Looking over the docs for HtmlDecorator ...
3
votes
3answers
2k views
Zend validators and error messages: addValidator and addErrorMessage
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 a ...
2
votes
2answers
96 views
Zend EmailAddress Validation returning multiple errors
I am unable to make Zend_Validate_EmailAddress show only 1 error message when the user enter invalid email address. The code is
$email = new Zend_Form_Element_Text('email');
...
2
votes
3answers
90 views
How to unset elements in zend form
I have a zend form in which I have many elements. I use form on many places. I have an element of file and that is:
$file= new Zend_Form_Element_File('merchantLogo');
...
2
votes
3answers
71 views
Zend-form without Zend-Framework MVC - viewscript isn't diplaying elements, but they exists and are displayed by var_dump()
When I try, to do something like this:
<?=$this->element->mailCiteCheck?>
nothing is displaying.
However, when I do:
<?=var_dump($this->element->mailCiteCheck);?>
I get:
...
2
votes
3answers
68 views
zend framework - how not to wait for upload if some validator fails?
i have a form with various elements and a file upload, sometimes the user has to wait for the upload to finish only to see he wrote something wrong(some element didn't pass validation).
Is it ...
2
votes
4answers
248 views
Zend Form Element with Javascript - Decorator, View Helper or View Script?
I want to add some javacsript to a Zend_Form_Element_Text .
At first I thought a decorator would be the best way to do it, but since it is just a script (the markup doesn't change) then maybe a view ...
2
votes
1answer
70 views
Zend_Form_Element different render on different action
I created my own form element in Zend Framework. The only thing i would like to do is add a different functionality to the element when it's first created (so it's requested by the 'new' action), and ...
2
votes
1answer
199 views
Render an array of input using Zend_Form
How can build a zend form that renders like this
Notice child_name[] as name on last 3 input tags.
(I've ommited decorators tags intentionally)
<form method="post" action="" ...
2
votes
2answers
159 views
Zend_Form_Element_File consistently says: “file is not readable or does not exist.”
So I've been going along with the project contained in "Apress, Beginning Zend Framework"
and it seems I've hit a bit of a snag.
I'm currently using Zf 1.11 in windows(7 ultimate) w/ IIS.
The code ...
2
votes
2answers
71 views
Get name of a Zend_Form_Element in FormErrors Helper
I have a MyNameSpace_View_Helper_FormErrors Class which extends the standard FormErrors Class and sets the HTML for the ErrorMessage itself.
I have to give the errormessage container an id based on ...
2
votes
1answer
234 views
How can I customize the Zend_Validate_File_Upload::INI_SIZE error message?
I've tried 3 methods with no change to the error message which outputs File 'image' exceeds the defined ini size. My thinking is the message is captured somewhere and I haven't found out where. If you ...
2
votes
2answers
356 views
Zend form element errors not display
I have a simple contact form.When I submit form error messages not display.Pls help me
class Users_Form_ContactForm extends Zend_Form{
public function init(){
...
2
votes
1answer
927 views
Custom Error Message for Captcha Element In Zend Framework 1.10
I am trying to set my own custom error message onto my Captcha but for some reason it is echoing twice.
Here is my captcha code:
$captcha = new Zend_Form_Element_Captcha(
'captcha', // This is the ...
2
votes
1answer
247 views
File upload: Size validator or setMaxFileSize()
For Zend_Form_Element_File, is there any difference between adding a Size validator and using setMaxFileSize?
$file->addValidator('Size', false, 1000000);
$file->setMaxFileSize(1000000);
2
votes
2answers
454 views
Bug with Zend File field - file name doesn't re-populate in zend form
I'm noticing what I think is a bug with Zend_Form_Element_File. Can others please test it and tell me if they get the same result. On a failed form, all fields re-populate except the value of ...
2
votes
1answer
173 views
zend form how to add lots of custom html
I have lots of zend_form, and I want to add lots of custom html in them, what are the possible options. For e.g. I have a page where user can attach multiple emails with the account, so I have a field ...
2
votes
1answer
898 views
Requires a check box array using Zend_Form_Element_Checkbox
I need an array of check-box that should look like as following:
<input type="checkbox" name="myname[]" >
Currently I am using
new Zend_Form_Element_Checkbox('myname[]');
but it doesn't ...
2
votes
1answer
131 views
Add many select elements with [] in name
I want to be able to add to Zend_Form many Zend_Form_Element_Select.
I've got some loop in My_Form_Selects extends Zend_Form with
$element = $this->createElement('Select', 'element[]');
...
2
votes
1answer
147 views
Is it possible to set a class on Zend MultiOptions?
I have a Zend_Form_Element_MultiSelect element. I would like the output to be something like this:
<select id="users" multiple="multiple" name="users[]">
<option value="1" ...
2
votes
2answers
1k views
Zend Framework: How to remove the DtDd Decorator on a Zend_Form_Element_File?
I've tried every thing I can think of and I can't figure out how to display only the ViewHelper decorator on a Zend_Form_Element_File.
$UserPhoto = new Zend_Form_Element_File('UserPhoto');
...
2
votes
3answers
2k views
How does one add a 'plain text node' to a zend form?
I'm trying to add a plain text node in a zend form - the purpose is to only dispay some static text.
The problem is - im not aware of any such way to do it.
I have used 'description' but that HAS ...
2
votes
3answers
2k views
How to add CSS classes to Zend_Form_Element_Select option
I'm trying to add a CSS class to a Zend_Form_Element_Select option, but I just can't find a way to do it.
The desired output would be something like this:
<select name="hey" id="hey">
...
2
votes
1answer
1k views
How do configure Zend_Form to use array notation?
I'm having difficulty configuring Zend_Form. I have a Zend_Form sub-class. The form has some required information and some additional information. I want the additional information to be accessible ...
2
votes
2answers
1k views
Setting a label's id in Zend_Form
Hey, guys,
I'm trying to set an id for one of my form's labels so I can hide it with jquery later. Here's my element:
$password = new Zend_Form_Element_Password('password');
...
1
vote
4answers
34 views
zend form giving error
I am new to ZF.i have made a function that basically make a Form this is code
require_once 'Zend/Form.php';
function getLoginForm(){
$username = new Zend_Form_Element_Text('username');
...
1
vote
1answer
65 views
jquery ajax in Zend framework
i am new to ZF i want to create ajax link that will go to "task" controller and "ajax" action
do something like this
$registry = Zend_Registry::getInstance();
$DB = $registry['DB'];
$sql = "SELECT ...
1
vote
2answers
37 views
zend paginator make other links and Action Calling concatinating with the URL
I am NEW to ZF .i used zend paginator in my first project .its working fine that is switching b/w pages with right result but the problem is that i have other links too in that view have a look to my ...
1
vote
0answers
96 views
How to create multiple select box with Zend Framework?
Zend Framework has Zend_Form_Element_Multiselect element.
But I haven't found any examples how to extend it and create a multiple select box which example is represented here: ...
1
vote
3answers
48 views
Default value on Zend_Form_Element_Select
There is still a part of me which things this Zend thing is a horrible mess that some how forgives it self at a later stage, But it follows no structure and the documentation is horrible, Which always ...
1
vote
1answer
53 views
Add a Validator 2 times in an Element on Zend
I made a Validator that receives a class instance and a function name and then executes it.
This is usefull for execute many custom validations through database table mappers.
The problem is that I ...
1
vote
2answers
152 views
zend framework create empty display group and then add element
Is possible to create an empty display group and then add the elements?
I tried:
addDisplayGroup(null, 'exampleGroup')
But you have to pass at least an element...
I need to create just an empty ...
1
vote
2answers
111 views
Zend checkbox array with key value issue
I have a question about the zend_form_element_checkbox from zend.
I have a form with multiple checkboxes. And when I send this form, I logically receive an array of params that look like that :
...
1
vote
0answers
54 views
Automatic translation of multioptions in Zend_Form breaks sortorder
I have the following issue. I create a Zend_Select element and add multioptions in an array.
Zend automatically translates the options, after which my multioptions are sorted incorrectly.
Right now, ...
1
vote
1answer
68 views
Remove an option from a Zend Radio Form Element
An easy question.
I have a Zend_Form_Element_Radio element in my form with multioptions.
I'd like to remove an option in my controller.
I've found how to disable an option ...
$element = ...
1
vote
2answers
143 views
Disable Zend Form Element validation if hidden
I have a few elements in my zend form that are sometime hidden via javascript.
I would like to disable their validations if they are hidden, so the form will be valid.
Any way to do it in the server ...
1
vote
1answer
84 views
Zend Form MutliCheckbox Validate Number of Checked Items
I have a Zend Form with a MutliCheckbox element.
I would like to validate the number of checked items, i.e. verify that exactly 3 items are checked.
Can I do it with any current validates or do I ...
1
vote
1answer
93 views
Isn't there something fundamentally wrong with adding a csrf to a form?
If the user opens two forms of the same kind, one will have a csrf error,
I myself being a multi-talented, multi-tasking with a robot mentality, absolute beast am used to opening multiple tabs and ...
1
vote
1answer
44 views
Zend_Form - multiArray based elements
Using Zend_Form, how would I create form elements like this:
<input type="text" name="element[0][name]" value="" />
<input type="text" name="element[0][text]" value="" />
<input ...
1
vote
0answers
172 views
Add a custom dijit element to Zend Dojo Form
I would like to use Dijit elements that are not included into Zend Framework. But I don't know how I should go around it :
$subPrice = new Zend_Dojo_Form_SubForm('priceTab');
...
1
vote
0answers
77 views
Zend_Form_Element from Zend_Config_Ini
Currently I am loading form element definitions from an ini file that looks like this as an example:
[tickets] ; tablename
ticket_number.name = "ticket_number"
ticket_number.type = "text"
...