Tagged Questions
0
votes
1answer
141 views
Embedding a Views (VBO form) with Exposed Form Filter within a Node edit form
Case:
insert/embed a form within another form, while maintaining the original <form> markup in the embedded output. In this case, it's a Views Bulk Operations form with Exposed Form Filters ...
0
votes
1answer
171 views
Drupal 7 Form API - Custom Select Theme
I have been searching all day but unable to find any answers - I am sure I am doing it right as worked fine in Drupal 6 and should work fine in Drupal 7.
I want to give a custom theme function to my ...
0
votes
2answers
238 views
Drupal 7 - Form API Custom Module
I have a form that calculates two values, form works perfectly, however i'm having some problems working out how I can calculate the two values and return the answer as rendered HTML so I can style it ...
1
vote
1answer
2k views
Drupal 7: Triggering an AJAX callback externally in the Form API
In a Nutshell:
I'm trying to trigger an external event via jQuery, causing an AJAX callback on a Drupal form to be executed. This rebuilds several chained elements. It works once, but then breaks ...
0
votes
0answers
117 views
Save extended multiple image field values with form api
In some of my content types I have a multiple image field. I would like to add for each image a select box to specify if the image needs to float on the left, center or right.
I think I could use the ...
0
votes
2answers
424 views
Drupal 7, form submit: Display result of a query?
Using the form api, I'm to display the result of some processing after a post is sent by a form.
So I implement the module_name_submit(...) method:
function cmis_views_block_view($delta = '') {
...
0
votes
1answer
132 views
Should custom form module in drupal be a node type?
I just started to develop a new module in Drupal. The goal of the module is to capture user's data (purely CRUD). I had been using CakePHP so far and now planning to switch to Drupal.
I am using ...
0
votes
1answer
365 views
how to display multiple select list after node submit
I have been reading around and just havent found any type of answer.
I have a multiple select list and need to take the the values of the multiple select and pass them to an API call.
But I dont ...
0
votes
1answer
1k 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
1k 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
375 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
1answer
298 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 ...
3
votes
2answers
3k 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 ...
0
votes
1answer
841 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 ...
1
vote
4answers
941 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
2k 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
2answers
162 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 ...