PHP code example of zertex / yii2-gridstackjs

1. Go to this page and download the library: Download zertex/yii2-gridstackjs 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/ */

    

zertex / yii2-gridstackjs example snippets


use zertex\gridstack\Gridstack;


$gridstack = Gridstack::begin([
    'options'=>['class'=>'grid-stack'],
    'clientOptions'=>[
        'cellHeight'=> 80,
        'verticalMargin'=> 10,
    ],
]);

public $depends = [
...
'zertex\gridstack\GridstackAsset',
...
];

php composer.phar