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> 
 enctype 10 = multipart/form-data FORM 
 method = post 
 prefix = tx_form 

 10 { 
     additionalParams { 
     
         test { 
         
             test1 { 
             
                 yy = TEXT 
             
                 yy.value = test_test1_yy_value 
         
             } 
         
             test2 = TEXT 
         
             test2.value = test_test2_value 
     
         } 
     
         test3 = text3_value 
 
     } 

 10 = TEXTLINE 
 10 { 
     name = name 
     label = Name 
 } 
 </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@. 

Back