PHPackages                             derekisbusy/yii2-jqwidgets - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. derekisbusy/yii2-jqwidgets

ActiveYii2-extension[Framework](/categories/framework)

derekisbusy/yii2-jqwidgets
==========================

Collection of useful widgets for Yii Framework 2.0 extending functionalities

1.1.x-dev(10y ago)1991GNU General Public LicenseCSS

Since Sep 7Pushed 10y ago1 watchersCompare

[ Source](https://github.com/derekisbusy/yii2-widget-jqwidgets)[ Packagist](https://packagist.org/packages/derekisbusy/yii2-jqwidgets)[ Docs](https://github.com/dumuro/yii2-widget-jqwidgets)[ RSS](/packages/derekisbusy-yii2-jqwidgets/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (2)Used By (0)

yii2-jqwidgets
==============

[](#yii2-jqwidgets)

### Install

[](#install)

Either run

```
$ php composer.phar require derekisbusy/yii2-jqwidgets "*"

```

or add

```
"derekisbusy/yii2-jqwidgets": "*"

```

to the `require` section of your `composer.json` file.

License
=======

[](#license)

yii2-jqwidgets is released under the GNU General Public License. See the bundled LICENSE.md for details.

\##Examples

```
use derekisbusy\jqwidgets\JqWidgets;

echo JqWidgets::widget([
    'type' => 'jqxButton',
    'options' => [
        'theme' => 'energyblue',
        'width' => '150',
        'height' => '25',
    ],
    'content' => 'test'
]);
```

```
use derekisbusy\jqwidgets\JqWidgets;

$button = JqWidgets::begin([
    'type' => 'jqxButton',
    'options' => [
        'theme' => 'energyblue',
        'width' => '150',
        'height' => '25',
    ]
]); ?>
