pitcher/yii2-kendoui
Composer 安装命令:
composer require pitcher/yii2-kendoui
包简介
Kendo UI Extension for Yii 2
关键字:
README 文档
README
Currently implemented DataSource which is generating on ActiveRecord model-base.
How to use?
@app/controllers/AddressController.php
use \tigrov\kendoui\KendoBuild; class AddressController extends Controller { public function actionIndex() { return $this->render('index'); } public static function kendoActions() { // Address extends of ActiveRecord $options = [ 'model' => Address::className(), 'query' => [ 'where' => ['status_id' => Address::STATUS_ACTIVE], ], ]; return KendoBuild::actions($options); } public function actions() { return array_merge(parent::actions(), static::kendoActions()); } }
@app/views/address/index.php
<?php
use yii\helpers\Url;
use yii\helpers\Html;
use \tigrov\kendoui\DataSource;
use \tigrov\kendoui\widgets\KendoShortForm;
use \tigrov\kendoui\assets\KendoAsset;
$this->setTitle(\Yii::t('user', 'Addresses'));
KendoAsset::register($this);
$dataSource = \Yii::createObject([
'class' => DataSource::className(),
]);
$dataSourceSettings = $dataSource->getSettings();
$dataSourceJson = json_encode($dataSourceSettings);
$this->registerJs(<<<AddressListJS
$(function () {
var dataSourceSettings = $dataSourceJson;
dataSourceSettings.error = function(e){console.log(e.errors)}
var dataSource = new kendo.data.DataSource(dataSourceSettings);
var addressList = $("#addressList").kendoListView({
dataSource: dataSource,
template: kendo.template($("#addresTemplate").html()),
editTemplate: kendo.template($("#addressEditTemplate").html())
}).data("kendoListView");
$(".k-add-button").click(function(e) {
addressList.add();
e.preventDefault();
});
});
AddressListJS
, $this::POS_END);
?>
<p><a class="k-button k-button-icontext k-add-button" href="#"><span class="k-icon k-add"></span><?= \Yii::t('pro', 'Add new Address'); ?></a></p>
<div id="addressList"></div>
<script type="text/x-kendo-template" id="addresTemplate">
<div class="address">
<div class="edit-buttons">
<a class="k-button k-button-icontext k-edit-button" href="\\#"><span class="k-icon k-edit"></span></a>
<a class="k-button k-button-icontext k-delete-button" href="\\#"><span class="k-icon k-delete"></span></a>
</div>
<p>#=first_name# #=last_name#</p>
<p>#=company#</p>
<p>#=address#</p>
<p>#=city#, #=postal_code#</p>
</div>
</script>
<script type="text/x-kendo-tmpl" id="addressEditTemplate">
<div class="address-form">
<?php $form = KendoShortForm::begin(['dataSource' => $dataSource]); ?>
<?= $form->kendoField('first_name'); ?>
<?= $form->kendoField('last_name'); ?>
<?= $form->kendoField('company'); ?>
<?= $form->kendoField('address'); ?>
<?= $form->kendoField('city'); ?>
<?= $form->kendoField('postal_code'); ?>
<div class="k-edit-buttons k-state-default">
<a class="k-button k-button-icontext k-update-button k-primary" href="\\#"><span class="k-icon k-update"></span><?= \Yii::t('pro', 'Save'); ?></a>
<a class="k-button k-button-icontext k-cancel-button" href="\\#"><span class="k-icon k-cancel"></span><?= \Yii::t('pro', 'Cancel'); ?></a>
</div>
<?php KendoShortForm::end(); ?>
</div>
</script>
pitcher/yii2-kendoui 适用场景与选型建议
pitcher/yii2-kendoui 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 648 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 12 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「datasource」 「yii2」 「kendo」 「kendoui」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 pitcher/yii2-kendoui 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pitcher/yii2-kendoui 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 pitcher/yii2-kendoui 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
FSi DataSource Component
FSi DataSource Bundle
A custom URL rule class for Yii 2 which allows to create translated URL rules
MongoDB Datasource for CakePHP
AWS S3 datasource in CakePHP3
A library providing abstract implementations of various persistence layers based on JSON API relational resource concepts.
统计信息
- 总下载量: 648
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2016-12-07