Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
60 views

Quick form validation

I use db dataobject, and thus quickform. I got stuck with a problem. want to set a validation at the client side to check a file name extension. Can't find a way out. the field is like: 'pathname' ...
2
votes
4answers
604 views

Where can I QuickForm2 documentation

I spent the past few hours searching for a tutorial/documentation for QuickForm2 but seems like there is no such thing other than the examples attached with the package itself which are not sufficient ...
1
vote
2answers
503 views

How to set values displayed after submit using PEAR QuickForm?

Let's say I've got form like this: $form = new HTML_QuickForm('Novinky'); $defaults = array('text' => ''); $form->setDefaults($defaults); $elements['text'] = $form->addElement('textarea', ...
0
votes
1answer
500 views

Moodle HTML Quickform select options not loading correctly

I have 2 select lists ausers - List all available users susers - Displays selected users I use moodles global $SESSION variable to store the users selection items and then I load the ...
0
votes
2answers
49 views

How to prevent elements from being output

I'm trying to create a form with quickform (default in the company). This form is multipart but on 1 page. I combine it with the sigma templating system. The idea of the page is: ...
0
votes
1answer
123 views

Php Quickform Grouprule for Html-Select and Html-Input Group needed

i'm currently working on a big html form. I use Php Quickform to create and validate it. The form has a few Groups that consist of a Input-Textfield and a Select-field. The code for one of the groups ...
0
votes
1answer
299 views

Is there any good tutorial on PEAR HTML_QuickForms2?

I've been searching for good tutorials on Pear HTML_QuickForms2 but so far I was unable to find any... I found a tutorial which claims to be able to teach you complex forms, however apart from being ...
0
votes
2answers
2k views

How can I use QuickForm to add disabled select options?

I have code using QuickForm that creates a select widget with the following: $form->addElement( 'select', 'state_id', 'State:', statesArray() ); statesArray() queries the database to get the ...
0
votes
1answer
75 views

How to set IDs for select elements of Quickform_date?

Is there some way to add ID attribute to every select element generated by Quickform_date so it would look for example like this? <select id="date-d" name="date[d]"> <option ...
0
votes
2answers
46 views

Accessing array value

print_r($fanr); results in: HTML_QuickForm_text Object ( [_label] => FA-Nummer [_type] => text [_flagFrozen] => [_persistantFreeze] => 1 [_attributes] => Array ...
0
votes
1answer
242 views

PHP - QuickForm Submits as Get Rather Than Post

I am trying to get started with PEAR's HTML_QuickForm but I'm having a problem. For some reason all of my form data is being submitted with GET and not POST. The default is supposed to be POST and ...
0
votes
1answer
251 views

PHP PEAR Quickform validation help

I am using PEAR's Quickform package to validate a form I have, I need help getting a validation rule applied to a group of checkboxes. $subjectArea[] = HTML_QuickForm::createElement('advcheckbox', ...
-1
votes
1answer
47 views

PHP QuickForm equivalent for Ruby on Rails

I need to convert a huge application, with more than 1500 function points, from PHP with lots of forms using QuickForm, to Ruby on Rails. There are a equivalent of QuickForm in RoR?