定制 zgb7mtr/yii2-bootstrap-color-picker 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

zgb7mtr/yii2-bootstrap-color-picker

最新稳定版本:v1.0.1

Composer 安装命令:

composer require zgb7mtr/yii2-bootstrap-color-picker

包简介

Bootstrap Colorpicker widget for Yii2.

README 文档

README

Renders a Bootstrap ColorPicker plugin.

Installation

The preferred way to install this extension is through composer.

Either run

composer require zgb7mtr/yii2-bootstrap-color-picker:~1.0

or add

"zgb7mtr/yii2-bootstrap-color-picker" : "~1.0"

to the require section of your application's composer.json file.

Usage

This widget renders a Bootstrap ColorPicker input control. Best suitable for model with date string attribute.

Example of use with a form
There are two ways of using it, with an ActiveForm instance or as a widget setting up its model and attribute.

<?php
use zgb7mtr\colorPicker\ColorPicker;

// as a widget
?>

<?= ColorPicker::widget([
    'model' => $model,
    'attribute' => 'color',
]);?>

<?php 
// with an ActiveForm instance 
?>
<?= $form->field($model, 'color')->widget(
    ColorPicker::className());?>

Example of use without a model

<?php
use zgb7mtr\colorPicker\ColorPicker;
?>
<?= ColorPicker::widget([
    'name' => 'Test',
    'value' => '#CCCCCC'
]);?>

统计信息

  • 总下载量: 4.43k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 2
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2017-01-09