2017 © Pedro Peláez
 

library yii2-dwz

Yii2 and dwz UI framework tools

image

jasmine2/yii2-dwz

Yii2 and dwz UI framework tools

  • Sunday, May 29, 2016
  • by Jasmine2
  • Repository
  • 2 Watchers
  • 4 Stars
  • 18 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

DWZ富客户端框架

DWZ富客户端框架, (*1)

Installation

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

Either run, (*3)

php composer.phar require --prefer-dist vendor/yii2-dwz "*"

or add, (*4)

"vendor/yii2-dwz": "*"

to the require section of your composer.json file., (*5)

Usage

1.Panel 面板, (*6)

<?php
use yii\dwz\Panel;
Panel::begin(['title'=>'Panel Title','class'=>'panel collapse close']);
?>
<table></table>
<?php
Panel::end();
?>

2.Tabs 标签页, (*7)

<?php
use yii\dwz\Tabs;
echo Tabs::widget(['items'=>[
        ['title'=>'t1','url'=>'','content'=>'t1 content'],
        ['title'=>'t2','url'=>['user/index'],'content'=>'']
    ],'contentStyle'=>'height:300px']);
?>

3.Alert 弹出提示, (*8)

 'error',
    'content' => 'error',
    'message' => '您的数据提交成功!'
    ]);
?><br>
 'success',
    'content' => 'success',
    'message' => '您的数据提交成功!'
    ]);
?><br>
 'warning',
    'content' => 'warning',
    'message' => '您的数据提交成功!'
    ]);
?><br>
 'info',
    'content' => 'info',
    'message' => '您的数据提交成功!'
    ]);
?><br>
 'javascript',
    'content' => '自定义JAVASCRIPT',
    'message' => 'test()'
    ]);
?><br>






4.Dialog 对话框, (*9)

<?php
user yii\dwz\Dialog;

echo Dialog::widget([
        'rel'   => 'only_rel',
        'title' => 'Show title',
        'width' => '800',   //default 600
        'height'=> '600',   //default 300
        'mask'  => false, //default true
        'url'   => ['site/login'],
        'text'  => 'show_Dialog'
    ]);

The Versions

29/05 2016

2.0.x-dev

2.0.9999999.9999999-dev

Yii2 and dwz UI framework tools

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Avatar Jasmine2

yii2 dwz

29/04 2016

1.0.0

1.0.0.0

Yii2 and dwz UI framework tools

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

by Avatar Jasmine2

yii2 dwz

13/08 2015

dev-master

9999999-dev

DWZ富客户端框架

  Sources   Download

Apache-2.0

The Requires

 

by Mr.You

extension yii2