5102 Posts in 1520 Topics by 1116 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1111 Views |
-
ManyManyComplexTableField

20 May 2010 at 8:55pm
Hi,
I am using a ManyManyComplexTableField like in the below document:
http://doc.silverstripe.org/manymanycomplextablefield?rev=1195784535
As you can see in the table or in the below image:
http://doc.silverstripe.org/_media/manymany.png?cache=&w=701&h=217
The table on shows 10 lines of data is there any way of increasing this.Thank you.
-
Re: ManyManyComplexTableField

31 August 2010 at 2:04pm
$Type = new ManyManyComplexTableField (
$this,
'Types',
'TypeDataObject',
array()
);
$Type->pageSize = 18;
$fields->push($Type);or if you were adding to a page
$fields->addFieldToTab('Root.Content.Type', $Type);
All complextablefield's share the pageSize variable.
| 1111 Views | ||
|
Page:
1
|
Go to Top |


