Community

How to create a tabular questionnaire using Drupal 6 webform module

Hi All,

I would like to create a questionnaire survey using Drupal 6. My form structure is a multiple fieldsets. Each of fieldsets includes a table. Within the table, it has textfield, textbox or radio buttons in rows. Here is an example of fieldset in html format below. Does anyone know how I can construct a table like this using Drupal 6 webform module?

        <fieldset>
            <legend>
                Survey
            </legend>
        <table>
            <tr>
                <th>
                    &nbsp;
                </th>
                <th>
                    Name
                </th>
                <th>
                    Yes
                </th>
                <th>
                    No
                </th>
                <th>
                    Comments
                </th>
             </tr><tr>
                <td>question 1</td>
                <td>
                    <input type="text"/>
                </td>
                <td>
                    <input type="radio" value="1"/>
                </td>
                <td>
                    <input type="radio"/>
                </td>
                <td rowspan="2"></td>
            </tr><tr>
                <td>question 2</td>
                <td>
                    <input type="text"/>
                </td>
                <td>
                    <input type="radio"/>
                </td>
                <td>
                    <input type="radio"/>
                </td>
            </tr>
        </table>
     </fieldset>

Thanks a lot,

John

Comments

Arrange Field

I kind of get what I want with Arrange Field module.

John