Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
337 views

How can i do multiple file upload using Drupal 7 Form API?

I'd like to upload multiple files using Form API. '#type' => 'file' provides upload only one file. $form['picture_upload'] = array( '#type' => 'file', '#title' => t(''), '#size' ...
3
votes
2answers
773 views

Why can't I move a field into a fieldset in a Drupal form - fails to pick up current value

I have a node form in Drupal 7, in order to simplify it for the user I want to break it up into sections using the vertical tabs feature. Using hook_form_FORMID_alter() I can move the fields without ...
1
vote
1answer
875 views

How to disable a field or make it readonly in Drupal 7

I am trying to disable couple of fields and make them readonly via hook_page_alter(). I was able to do check if user is viewing the page edit section (the form edit) ...
1
vote
4answers
686 views

Drupal 6: Only inserting first character of value to MySQL

I am working with a hook_form_alter on a CCK type (for you drupal-ers). I have a field that is normally a select list in my node form. However, in this instance, I want to hide the select list, and ...
1
vote
2answers
1k views

drupal form textfield #default_value not working

I am working on a custom module with multi-page form on drupal 6. I found that #default_value is not working when my '#type' => 'textfield'. However, when '#type'=>'textarea', it displays correctly ...
0
votes
1answer
73 views

How do I keep a Drupal form “markup” element from rendering inside the wrapper of the “submit” element?

I have programatically added a "markup" element to a Drupal form. When it renders on the page, the element appears in the wrapper for the submit button. Clarification: It should appear between the ...
0
votes
1answer
44 views

Creating a submit button

I can create the regular submit button in the form api but what if I want to do something like this $form['required_text'] = array( '#markup' => '<button name="submit" value="submit" ...
0
votes
0answers
52 views

I get an error “this._each is not a function” when try to use AJAX in drupal 7 [closed]

I try drupal 7 AJAX example and get the error. The error appears as a popup when I change select option. Firefox: An error occurred while attempting to process /drupal/en/system/ajax: this._each ...
0
votes
1answer
176 views

Drupal 7 retain file upload

I have a file upload form how can I retain this file when there are other validation errors so that the user doesn't have to upload the file again? I tried this in my validation function but it ...
0
votes
1answer
85 views

Drupal 6 to Drupal 7 migration form API php code snippet

I'm trying to figure out what is wrong with this bit of Drupal 6 php code i'm trying to get working in Drupal 7: function node_widget_get_fields(&$form) { $fields = array(); if ...
0
votes
0answers
119 views

load form in another page using Ajax in drupal 7

I have a link in a block and when i click it it brings with ajax a form from another page let's call it contact. In contact page the form uses ajax to submit the data, it works ok. But when i get the ...
0
votes
0answers
96 views

Adding Drupal's default behaviors to inserted AJAX forms

I have a navigation that loads a small portion of content into a specified div (to prevent from page reloads). A couple of my pages render a form setup through Drupal's Form API (FAPI) which contain ...
0
votes
1answer
109 views

check field and redirection on a multistep webform - Drupal

I have set up a multistep webform on a Drupal website and I am trying to check a field and stay on the first page of the webform if the field doesn't meet the conditions. On the first step of the ...
0
votes
0answers
451 views

Adding Ajax to Webforms in Drupal 7 - Ajax Submit

I'm using Webforms 3.x and Drupal 7.x. I'd like to be able to use Drupal 7's Ajax features to provide a confirmation message via Ajax on submit. To achieve this, I'm hoping to modify my form using a ...
0
votes
0answers
291 views

Drupal: Using hook_form_alter to set default values for multiple-value CCK fields

I was previously using the Default Value PHP field in the CCK Field Properties page to define multi-value default which was working fine. However the code is now getting so complex and I need to pass ...
0
votes
0answers
294 views

Form Alter a Text field to a Select results in an error

I want to change a views filter of a textfield to a select drop down. I have done this a few times before, but not sure why I can't get this to work. Here is the code: $attributes = ...
0
votes
2answers
153 views

Global hotkeys for WindowsFormApplications

How can I execute a function, when user clicks specific button? E.g. when I want to count, how many times user will hit 'A' button during writing (or Ctrl+C combination). My app should work in ...
0
votes
1answer
426 views

Drupal Form API: Create Form Elements based on the database values (Dynamic Form Creation)

I am creating a form where i have to populate "X" form elements (text-fields to be specific) based on values in the database (X number of elements, properties of each element etc). Is there a way to ...
0
votes
1answer
1k views

get values from form API checkboxes

This is a module that I'm working on to create a custom filtered search. But i have no idea on getting the values of form type checkboxes... I searched but nothing yet! <?php function ...
0
votes
1answer
190 views

Drupal: Username input field?

How do I use the form API to make a field that only accepts names of registered users? I know how to do the autocomplete to suggest user names already. Specifically, I'm looking to replicate the ...
0
votes
2answers
133 views

Filter and View screens on different pages

Situation: In Drupal, when you use Views module, it restricts to display Search Form and Results on the same page. E.g. Page A = (Search Form + Results). There is no option in Views module ...