Tagged Questions

5
votes
3answers
2k views

'add another item' in non-CCK Drupal forms

CCK for Drupal has the handy feature of allowing a single CCK field to accept multiple values via a "add another item" button that results in an array of data in the node. I'm wondering if there's ...
3
votes
2answers
3k views

Drupal Dynamic Select on a Form

I'm sure this is an easy one for jQuery experts, but I'm a backend guy, and can't find the best way to do this. I have two arrays in Drupal, one is a list of names of views, and the other is an array ...
1
vote
1answer
906 views

Ajax loading in Drupal using Ctools breaks

I'm working on a custom module using CTools ajax and form. I tried to combine this example with the one from here. It goes like this: a user chooses from one of the radio buttons, on submit the map of ...
1
vote
1answer
222 views

Wysiwyg mo editor for Drupal 5 forms (Form API): How to enable it for several textareas?

I am trying to create a form with the Drupal 5 form API that has two textareas, both of which should have have a wysiwyg editor enabled to allow HTML formatted input. However, only the second textarea ...
1
vote
1answer
55 views

Find a list of modules that 'altered' a specific form in Drupal

Is there a trick, addon or patch that allows me to find out what modules altered a specfic form? A list of all hook_form_alters is not too hard to achieve. But I want to list only those that actually ...
0
votes
1answer
91 views

Clearing the values in drupal form api with ahah

I have dynamically created textboxes using Drupal AHAH, which changes on selecting the number of textboxes in a dropdown. When I am initially having 6 textboxes with values in it, and then changing ...
0
votes
0answers
169 views

How to set default value for a dropdown field using “ahah” drupal?

I am rendering following field using AHAH $options = array('0' => 'zero', '1' => 'one', '2' => 'three', '4' => 'four'); $cat = array(1,2); $fields['q_scat'] = array( '#type' => ...
0
votes
2answers
659 views

Why isn't my drupal form submit function being called?

Ugh, this is probably something simple, but it is driving me crazy. I've got a simple form (just a submit button) that I am inserting into a node using hook_nodeapi(). It gets inserted correctly, ...
0
votes
1answer
114 views

How to modify a form content with ajax?

The global objective is to implement a lightweight carting system (ubbercart isn't suitable for my specific needs). In the right sidebar I have a block 'cart' which displays my 'cart_form'. At page ...
0
votes
1answer
416 views

Drupal Form API - populate fields from Database

Im looking to populate drupals form api fields with records from the database. with: function mytopfive() { $form['mytop_header'] = array( '#type' => 'markup', '#value' => ...
0
votes
2answers
785 views

Disable Drupal's textarea expander?

Similar to the question posting form on SO, Drupal adds a draggable expander to the bottom of textareas created through the form api. How can I disable this in a nice manner?
0
votes
1answer
261 views

Drupal: module, cck or other

I have a legacy PHP form that I'm moving over to Drupal 6. I'm trying to make things easy for me as well as the future admins of the site. The below form is the heart of the old site data. So far in ...