[TYPO3-mvc] A little help with the fluid form tag?

Søren Malling soren.malling at gmail.com
Tue May 11 22:09:33 CEST 2010


Hi Jonas,

> The form shows up with all the data from the DB, but if I click on my submit
> button (which should perform the updateAction) my edit-Form shows up again
> (no redirect in updateAction) and the Data is not updated and no
> flashmessage is shown. It seems, that the action is not called at all. The
> Action is registered and not cached.

Try to add the following to your template with the form

	<f:form.errors>
		<div class="error">
			<strong>{error.propertyName}</strong>: <f:for each="{error.errors}"
as="errorDetail">{errorDetail.message}</f:for>
		</div>
	</f:form.errors>

This should display errors from your form, that are normally not displayed.

Regards,

Søren


More information about the TYPO3-project-typo3v4mvc mailing list