By gemini25 on
Hi,
I have a small problem with the "node form template"-modul. I'm pretty sure, that it's a big issue for people who have already worked with it. http://drupalmodules.com/module/node-form-template
The form shows up as I want, but my problem is, that the "Submit" (Save) Button isn't working.
Here is my node-form-template:
<div class="node-form">
<div class="standard">
<?php print $title; ?>
<table width="870" border="0">
<tr>
<td colspan="2">Allgemeine Angaben</td>
</tr>
<tr>
<td><?php print $field_formular_entlaufen; ?>
</td>
<td><?php print $field_datum_formular;?>
<p> </p>
</td>
</tr>
<tr>
<td colspan="2"><?php print $field_formular_wo; ?></td>
</tr>
</table>
</div>
<?php print $buttons; ?>
</div>
Thank you
Comments
Nobody can help?
Nobody can help?
form_ids
You've probably figured it out by now, but just in case anybody has the same problem, it looks like you forgot the
"$form_ids" field which handles the submit etc. Just stick it up there at the top
<?php print $form_ids; ?>before the title field...