mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR: Updated TableListField to accept any list type, not just a DataObjectSet.
This commit is contained in:
parent
04e30243d0
commit
14c57ae082
@ -235,8 +235,8 @@ class TableListField extends FormField {
|
||||
$sourceSort = null, $sourceJoin = null) {
|
||||
|
||||
if($sourceClass) {
|
||||
// You can optionally pass a DataList/DataObjectSet
|
||||
if($sourceClass instanceof DataObjectSet) {
|
||||
// You can optionally pass a list
|
||||
if($sourceClass instanceof SS_List) {
|
||||
$this->dataList = $sourceClass;
|
||||
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user