PHP code example of davidyell / sortable

1. Go to this page and download the library: Download davidyell/sortable library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

davidyell / sortable example snippets


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


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'));