Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

ManyManyComplexTableField return more than 10 rows in admin


Go to End


553 Views

Avatar
lozhowlett

Community Member, 151 Posts

11 January 2012 at 5:45am

Hi everyone

Hopefully this is easy ;) With a ManyManyComplexTableField table I want to return a lot more than 10 rows at a time within the admin system, is this doable?

 $tablefield = new ManyManyComplexTableField(
                 $this,
                 'Teams',
                 'Team',
                 array(
                 'Name' => 'Name',
                 'CarNumber' => 'CarNumber'
                 ),
                 'getCMSFields_forPopup'
             );
            $fields->addFieldToTab("Root.Content.Team Manager",$tablefield);

Thanks for any help!