[TYPO3-mvc] textareaRTE viewhelper

Daniel Dimitrov danielsd_bg at yahoo.fr
Thu Aug 5 12:22:56 CEST 2010


Anyone?

"Daniel Dimitrov" <danielsd_bg at yahoo.fr> wrote in message 
news:mailman.1.1280914325.31162.typo3-project-typo3v4mvc at lists.typo3.org...
> Ok, I've managed to save the description.
> I've declared the RTE property $_TRANSFORM_description to public and in my 
> create action
> I've unset it :(
> unset($newSupplier->_TRANSFORM_description);
>
> I feel that this is a rather stupid way of doing it, but I have no idea 
> how else to make it?
> Is there a way to let extbase know that I don't want to create the 
> TRANSFORM_description property for my object???
> Perhaps some javadoc comment or whatever???
>
> Kind regards,
> Daniel
>
> "Daniel Dimitrov" <danielsd_bg at yahoo.fr> wrote in message 
> news:mailman.1.1280909322.23759.typo3-project-typo3v4mvc at lists.typo3.org...
>> Hey @ll,
>> I'm currently trying to create a textarea with the RTE editor.
>> As a base for my Viewhelper I use the standard textarea viewhelper and 
>> the test_rtefe extension.
>> After a lot of tricks and hacks :D I managed to get the RTE area showing.
>>
>> The first problem I got was when trying to save the form.
>> I got the Tx_Extbase_MVC_Exception_InvalidArgumentValue exception, 
>> because the RTE js was creating
>> a hidden field _TRANSFORM_description with value="RTE"
>>
>> I've defined this in my model:
>> /**
>> *
>> * @var string
>> */
>> protected $_TRANSFORM_description;
>>
>> public function set_TRANSFORM_description($test) {
>> $this->_TRANSFORM_description = $test;
>> }
>>
>> and now I got the next exception 
>> Tx_Extbase_MVC_Exception_InvalidOrNoRequestHash.
>> I've put @dontverifyrequesthash on my new and create actions and now the 
>> form is being sent and no error message is shown.
>> However my description field (the one with the RTE) is not saved.
>>
>> When I use the standard f:form.textarea viewHelper then the text in the 
>> textarea is saved. Any ideas what could be wrong?
>>
>> Kind regards,
>> Daniel
> 


More information about the TYPO3-project-typo3v4mvc mailing list