davidyell/sortable

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (0.1.5) of this package.

A small component to implement sortable tables with id's in a Cake view. This allows you to easily attach sorting to any table.

Installs: 271

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 2

Forks: 2

Open Issues: 0

Type:cakephp-plugin

0.1.5 2014-06-26 08:26 UTC

This package is auto-updated.

Last update: 2024-01-13 01:13:23 UTC


README

#CakePHP-Sortable A small component to implement sortable tables with id's in a Cake view. This allows you to easily attach sorting to any table.

It includes the jQuery StupidTable plugin to facilitate the sorting, and also a component to deal with the saving.

##Installation Install this as you would any other plugin using CakePlugin::load('Sortable'); unless you are already using CakePlugin::loadAll().

You can also install the plugin from Packagist using Composer composer require davidyell/sortable

##Requirements This makes use of the NiceAdmin alert-box element.

##Usage In your controller you will need to include it in your components array.

public $components = array(
    'Sortable.Sortable'
);

Also you'll want to include the field on the view in order to submit the updated ranks to the component.

<?php
echo $this->Form->create();
echo $this->Form->input('updated-ranks', array('id' => 'updated-ranks', 'type' => 'hidden'));
echo $this->Form->submit('Save sort order', array('class' => 'btn btn-success', 'div' => false));
echo $this->Html->link('Cancel', array('action' => 'index'), array('class' => 'btn'));
?>

##Todo

  • Consider refactoring the data management into a behaviour

##License The MIT License (MIT)

Copyright (c) 2013 David Yell

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:

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

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.