1573 Posts in 496 Topics by 483 members
Form Questions
SilverStripe Forums » Form Questions » Nested Fieldsets
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 429 Views |
-
Nested Fieldsets

6 August 2011 at 4:33am Last edited: 6 August 2011 4:34am
I have to nest a fieldsets, or something simmilar. Now I use
$fields = new FieldSet;
$fields->push($PosName = new CompositeField());foreach($objects as $row)
{
$PosName->push(new FileUploadField('Dupa'.$i++,array(),$this));
}Only problem is that FileUploadField does not work in that configuration returning HTTTP ERROR.
If I Use
$fields->push(new FileUploadField(...));
it works perfectly. But I have to make many instances of FUF. The reason I need nested composite fields is what I need data object set shown with fields and transposed.
ITEM | A | B
COL | 1 | 2
COL2 | 1 | 2
UPLOAD | 1 | 2
It there any solution to this problem? I am fighting all day with this.Thanks in advance
Michael.
| 429 Views | ||
|
Page:
1
|
Go to Top |

