2017 © Pedro Peláez
 

silverstripe-module silverstripe-griddle

GridField replacement

image

tom-alexander/silverstripe-griddle

GridField replacement

  • Tuesday, January 19, 2016
  • by Tom-Alexander
  • Repository
  • 2 Watchers
  • 2 Stars
  • 8 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

silverstripe-griddlefield

This is an in-complete and experimental replacement for GridField. Grid state is persistent across page reloads., (*1)

Usage

It can be used to render any SS_List implementation. Grid components and configurations have been removed. Data can be extended using GriddleFieldSource. The RelationEditorField can be used as a replacement for GridFieldConfig_RelationEditor., (*2)

 $fields->addFieldToTab(
   'Root.Team',
   RelationEditorField::create(
    'Team',
    'Team',
    $this->TeamMember()

API

GriddleField

GriddleField(String $name, String $label, SS_List $list), (*3)

setSource(GriddleFieldSource $source), (*4)

getSource(), (*5)

RelationEditorField

RelationEditorField(String $name, String $label, GriddleField $grid), (*6)

GriddleFieldSource

You can add and remove columns to the grid source using the following methods., (*7)

addColumn($column), (*8)

addColumnMapping('My Field', 'MyField'), (*9)

addColumnMapping('MyField', function($record) { return $record->MyField; }), (*10)

License

The MIT License (MIT), (*11)

Copyright (c) 2015 Tom Alexander, (*12)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*13)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*14)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*15)

Contributing

Code guidelines

This project follows the standards defined in:, (*16)

The Versions

19/01 2016

dev-master

9999999-dev

GridField replacement

  Sources   Download

The Requires

 

by Tom Alexander