2017 © Pedro Peláez
 

yii2-extension yii2-handsontable-widget

A minimalist Excel-like grid widget for Yii2

image

himiklab/yii2-handsontable-widget

A minimalist Excel-like grid widget for Yii2

  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 8 Forks
  • 1 Open issues
  • 5 Versions
  • 38 % Grown

The README.md

Handsontable Widget for Yii2

A minimalist Excel-like grid widget for Yii2 based on Handsontable., (*1)

Packagist Packagist license, (*2)

Installation

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

php composer.phar require --prefer-dist "himiklab/yii2-handsontable-widget" "*"

or add, (*5)

"himiklab/yii2-handsontable-widget" : "*"

to the require section of your application's composer.json file., (*6)

Usage

use himiklab\handsontable\HandsontableWidget;

= HandsontableWidget::widget([
    'settings' => [
        'data' => [
            ['A1', 'B1', 'C1'],
            ['A2', 'B2', 'C2'],
        ],
        'colHeaders' => true,
        'rowHeaders' => true,
    ]
]) ?>

or with ActiveRecord, (*7)

in view:, (*8)

use himiklab\handsontable\HandsontableWidget;

= HandsontableWidget::widget([
    'requestUrl' => 'hts',
    'isRemoteChange' => true,
]); ?>

in controller:, (*9)

use app\models\Page;
use himiklab\handsontable\actions\HandsontableActiveAction;

public function actions()
{
    return [
        'hts' => [
            'class' => HandsontableActiveAction::className(),
            'model' => Page::className(),
            'isChangeable' => true,
        ],
    ];
}

The Versions

03/07 2018

dev-master

9999999-dev

A minimalist Excel-like grid widget for Yii2

  Sources   Download

MIT

The Requires

 

yii2 widget grid handsontable

03/07 2018

1.0.5

1.0.5.0

A minimalist Excel-like grid widget for Yii2

  Sources   Download

MIT

The Requires

 

yii2 widget grid handsontable

01/11 2017

1.0.4

1.0.4.0

A minimalist Excel-like grid widget for Yii2

  Sources   Download

MIT

The Requires

 

yii2 widget grid handsontable

02/02 2016

1.0.3

1.0.3.0

A minimalist Excel-like grid widget for Yii2

  Sources   Download

MIT

The Requires

 

yii2 widget grid handsontable

27/09 2015

1.0.2

1.0.2.0

A minimalist Excel-like grid widget for Yii2

  Sources   Download

MIT

The Requires

 

yii2 widget grid handsontable