Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
Okay i'm using a databound form to submit media data. I'm struggling to get the folders to section them off when displaying the post.

On the main clone page i have this within the page. Which i will then update to what other folders i want.
Code: Select all
<cms:folder name="motorsport" title="motorsport" id="motorsport" />


Within the Databound form i'm using this code to then place the submission within the folder i want the post to be in. On the databound form i want it to have a dropdown menu that will show all the folders within the clone page to then set it to that folder

Code: Select all
<cms:input name='folder' type='bound'  class="sum56" />


and i placed this code within the databound masterpage submission

Code: Select all
folder=folder 


however this comes up

ERROR: Tag "input" - No matching field of name 'folder' found in database for data-binding
Hi Simon,

The following line of code expects an *editable region* named 'folder' to be present in the masterpage being bound to -
<cms:input name='folder' type='bound' class="sum56" />

As the error reports - there is no such region to be found.

What you have placed in the template will *not* create an editable region. Rather, it will create a 'folder' named 'motorsport'
<cms:folder name="motorsport" title="motorsport" id="motorsport" />

I wonder is you are somehow confusing the statement above with editable regions?
2 posts Page 1 of 1