PHP code example of fedemotta / yii2-gridster

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

    

fedemotta / yii2-gridster example snippets


use fedemotta\gridster\Gridster;

$gridster = Gridster::begin([
    'options'=>['class'=>'gridster'],
    'clientOptions'=>[
        'widget_margins'=> [10, 10],
        'widget_base_dimensions'=> [140, 140],
        'autogrow_cols'=> false,
        'resize'=>['enabled'=>true]
    ]
]);

public $depends = [
...
'fedemotta\gridster\GridsterAsset',
...
];

php composer.phar