Project

General

Profile

Bug #74014

Updated by Björn Jacob over 8 years ago

The f:form viewhelper arguments 

 * arguments 
 * additionalParams 
 * argumentsToBeExcludedFromQueryString 

 cannot be set via TS. For testing use the following form: 

 <pre> 
 <code> 
 10 = FORM 
 10 { 
     additionalParams { 
         test { 
             test1 { 
                 yy = TEXT 
                 yy.value = test_test1_yy_value test.test1.yy.value 
             } 
             test2 = TEXT 
             test2.value = test_test2_value test.test2.value 
         } 
         test3 = text3_value text3.value 
     } 
 } 
 </code> 
 </pre> 

 The form above generates url params like @_typoScriptNodeValue=@. This is not correct. Expected output is @test3=text3_value&test[test2]=test_test2_value&test[test1][yy]=test_test1_yy_value@. @test3=text3.value&test[test2]=test.test2.value&test[test1][yy]=test.test1.yy.value@. 

Back