Hi Couchies,
I was wondering if it would be possible to save a few databound forms at once, with one click.
This is what i've come up with so far:
Unfortunately it doesn't work and I don't know why.
I was wondering if it would be possible to save a few databound forms at once, with one click.
This is what i've come up with so far:
- Code: Select all
<cms:form method='get'>
<cms:pages masterpage="template.php">
<cms:if k_success>
<cms:form
masterpage='template.php'
mode='edit'
enctype='multipart/form-data'
method='post'
page_id=k_page_id
anchor='0'
>
<cms:db_persist_form
_invalidate_cache='0'
order=frm_order_bulk
/>
<cms:hide>
<cms:input type="bound" name="order"/>
</cms:hide>
</cms:form>
</cms:if>
<cms:input type="text" name="order_bulk"/>
</cms:pages>
<button type="submit">submit</button>
</cms:form>
Unfortunately it doesn't work and I don't know why.