Project

General

Profile

Bug #65480

Updated by Markus Klein about 9 years ago

I updated from 6.2.9 to 6.2.10 and the flexform values are not shown. 

 My Flexform with section: 
 <pre> 
 <T3DataStructure> 
	 <meta> 
		 <langDisable>1</langDisable> 
	 </meta> 
	 <sheets> 
		 <sDEF> 
			 <ROOT> 
				 <TCEforms> 
					 <sheetTitle>Event</sheetTitle> 
				 </TCEforms> 
				 <type>array</type> 
				 <el> 
					 <contributors_otherContainer> 
						 <title>Weitere Mitwirkende</title> 
						 <section>1</section> 
						 <type>array</type> 
						 <el> 
							 <contributor_other> 
								 <type>array</type> 
								 <title>Mitwirkende</title> 
								 <el> 
									 <field1> 
										 <TCEforms type="array"> 
											 <label>Name</label> 
											 <config> 
												 <type>input</type> 
												 <size>20</size> 
												 <max>60</max> 
												 <eval>trim</eval> 
											 </config> 
										 </TCEforms> 
									 </field1> 
								 </el> 
							 </contributor_other> 
						 </el> 
					 </contributors_otherContainer> 
				 </el> 
			 </ROOT> 
		 </sDEF> 
	 </sheets> 
 </T3DataStructure> 
 </pre> 

 This is stored in the db... seems correct to me. 

 <pre> 
 <?xml version="1.0" encoding="utf-8" standalone="yes" ?> 
 <T3FlexForms> 
     <data> 
         <sheet index="sDEF"> 
             <language index="lDEF"> 
                 <field index="contributors_otherContainer"> 
                     <el index="el"> 
                         <section index="1"> 
                             <itemType index="contributor_other"> 
                                 <el> 
                                     <field index="field1"> 
                                         <value index="vDEF">Buja</value> 
                                     </field> 
                                 </el> 
                             </itemType> 
                             <itemType index="_TOGGLE">0</itemType> 
                         </section> 
                     </el> 
                 </field> 
             </language> 
         </sheet> 
     </data> 
 </T3FlexForms> 
 </pre> 

 After saving the value of field1 is not shown in the Backend, but the empty section element (screenshot)

Back