fluid - Edit Treeview in TYPO3 flux -


i want edit sys category in fluidcontent template. using:

  • typo3 6.2.13
  • flux 7.2.1
  • fluidcontent 4.2.2
  • fluidpages 3.2.3
  • vhs 2.3.3

trying alway says have select element:

<flux:field.tree table="sys_category" parentfield="parent" maxlevels="10" expandall="1" name="syscategories" size="20" width="900">     <flux:wizard.edit label="edit" /> </flux:field.tree> 

adding flux:wizard.edit flux:field.relation don't work. doing wrong?

create folder , add categories in it.

and use below code. pid in flux:wizard.list , flux:wizard.add folder id.

<flux:field.tree table="sys_category" parentfield="parent" maxlevels="10" expandall="1" name="syscategories" size="20" width="900" />     <flux:field.input name="settings.systemcategoy" label="system category">         <flux:wizard.list label="list system categories" hideparent="1" table="sys_category" pid="38" width="80" height="80" />         <flux:wizard.edit label="edit system categories" width="80" height="80" openonlyifselected="1" />         <flux:wizard.add label="add system categories" hideparent="1" table="sys_category" pid="38" setvalue="prepend" />        </flux:field.input> 

Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -