Shows a group of DataObjects as a (readonly) tabular list (similiar to TableListField). Its most useful when you want to display a relationship (e.g. one-to-many), subset, or collection of DataObjects via a simple interface with the ability to edit context specific information in a javascript-popup (“Lightbox”).
You can specify limits and filters for the resultset by customizing query-settings (mostly the ID-field on the other side of a one-to-many-relationship).
See TableListField for more documentation on the base-class
See TableListField.
ComplexTableField tries to determine the parent-relation automatically by looking at the $has_one property on the listed child, or the record loaded into the surrounding form (see getParentClass() and getParentIdName()). You can force a specific parent relation:
$myCTF->setParentClass('ProductGroup');
By default, getCMSFields() is called on the listed DataObject. You can override this behaviour in various ways:
// option 1: implicit (left out of the constructor), chooses based on Object::useCustomClass or specific instance $myCTF = new ComplexTableField( $this, 'MyName', 'Product', array('Price','Code') ) // option 2: constructor $myCTF = new ComplexTableField( $this, 'MyName', 'Product', array('Price','Code'), new FieldSet( new TextField('Price') ) ) // option 3: constructor function $myCTF = new ComplexTableField( $this, 'MyName', 'Product', array('Price','Code'), 'getCustomCMSFields' )
If you don't want several functions to appear (e.g. no add-link), there's several ways:
There are several ways to customise the fields in the popup. Often you would want to display more information in the popup as there is more real-estate for you to play with.
ComplexTableField gives you several options to do this. You can either
The first will simply add the fieldset to the form, and populate it with the source class. The second will call the String as a method on the source class (Which should return a FieldSet) of fields for the Popup.
You can also customise Javascript which is loaded for the Lightbox. As Requirements::clear() is called when the popup is instantiated, ComplexTableField will look for a function to gather any specific requirements that you might need on your source class. (e.g. Inline Javascript or styling).
For this, create a function called “getRequirementsForPopup”.
Sometimes you'll want to have a nice table on the front end, so you can move away from relying on the CMS for maintaing parts of your site.
You'll have to do something like this in your form:
$tableField = new ComplexTableField( $controller, 'Works', 'Work', array( 'MyField' => 'My awesome field name' ), 'getPopupFields' ); $tableField->setParentClass(false); $fields = new FieldSet( new HiddenField('ID', ''), $tableField );
You have to hack in an ID on the form, as the CMS forms have this, and front end forms usually do not.
It's not a perfect solution, but it works relatively well to get a simple ComplexTableField up and running on the front end.
To come: Make it a lot more flexible so tables can be easily used on the front end. It also needs to be flexible enough to use a popup as well, out of the box.
Most of the time, you need to override the following methods:
Please use comments for notes, tips and corrections about the described
functionality.
Use the Silverstripe Forum to
ask questions.