An open API service indexing awesome lists of open source software.

https://github.com/derekisbusy/yii2-jqwidgets


https://github.com/derekisbusy/yii2-jqwidgets

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# yii2-jqwidgets

### 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

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

##Examples

```php
use derekisbusy\jqwidgets\JqWidgets;

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

```php
use derekisbusy\jqwidgets\JqWidgets;

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

test 2