Table inside a Form Fieldset

I had put form fields in a table using the code from http://api.drupal.org/api/drupal/includes--form.inc/group/form_api/7, because I wanted to display 3 fields in the same line... but then when I finished the whole table was rendered out of the original fieldset...

How do I achieve to insert the whole table inside the fieldset?

Where is the mistake?
This is the hole code:


function antartica_form($form, &$form_state) {

$form['description'] = array(
'#type' => 'item',
'#title' => t('A form with a submit handler'),
);

$form['#prefix'] = "

";
$form['#suffix'] = "

";

$form['name'] = array(
'#type' => 'fieldset',
'#title' => t('Data Download'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);

$form['name']['station'] = array(
'#type' => 'select',
'#title' => t('Station'),
'#prefix' => '

',
'#suffix' => '

',
'#default_value' => 'TNV',
'#options' => array(
'TNV' => t('TNV station'),
),
'#description' => t(''),
);

$form['name']['channel'] = array(
'#type' => 'select',
'#title' => t('Channel'),
'#prefix' => '

',
'#suffix' => '

',
'#default_value' => 'LH',
'#options' => array(
'BH' => t('BH (20 sps)'),
'LH' => t('LH (1 sps)'),

Image Remove button not working only in IE browser using Drupal 7

In IE you can't remove an image field once it's added to an imagefield.

1. Create a content type with a image field
2. Add an image. Save the node.
3. Return to edit the node. In IE8, you click the "remove" button by the image you want to remove, and nothing happens.

This works fine on firefox.

I couldn't find an issue reporting this, so just went with a new one.

Kindly help me

My mail: vinoth.m@snyxius.com

Joining 2 nodes of data into one view?

Hi team,

--> Concerning DRUPAL 7 <--

I am trying to create a view that pulls data from two different node types, using one common ID to link the two node types.

Basically, I have a common ID Field (an employee number). This number occurs in a Node which defines the employee (eg, their employee number, name, details, etc). It also occurs in another Node type, Jobs, which tracks the tasks that employee has open. Basically, one employee could have hundreds of Job nodes associated with their employee number.

I need to add some features to my CMS

I am making CMS and I need to add the following features

1- Adding existing HTMLs (not new htmls, I need to add existing htmls made by other html editors such as front page) to be searchable with their CSS, JS, and background images, flashes, sounds, hyberlinks and everything by just 1 click to add the page so that it is added with all its contents (May be I need to know where the pages are reading the paths of the flashes and images and js and css so that I can upload them to the right place).

How to do a menu item which shows taxonomy with depth in D7

Hi,

If I have a taxonomy hierarchy like :
-Plants
---Vegetables
---Flowers

for any content I assign the taxonomy child term like flowers or vegetables.

Non-WYSIWYG Edit Module

I am wondering if there are any non-wysiwyg editor modules out there. I do most of my content editing in straight HTML and would like an editor better than the default Full or Filtered text editor/filters. Do any exist (particularly for Drupal 7)?

The ideal feature set I'm looking for is:
-- Full screen mode
-- Save & Edit Feature (similar to http://drupal.org/project/save_edit)
-- Syntax highlighting (if possible)

Thanks.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x