lengnuan/yii2-jexcel

yii2 网页电子表格

安装次数: 32

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

语言:JavaScript

类型:yii2-extension

v0.10.0 2019-12-30 06:20 UTC

This package is auto-updated.

Last update: 2024-09-29 05:22:20 UTC


README

文档:https://bossanova.uk/jexcel/v3/examples/column-types

安装

composer require --prefer-dist lengnuan/yii2-jexcel "*"

"lengnuan/yii2-jexcel": "*"

用法:

image

<?= \lengnuan\jexcel\Jexcel::widget(['options' => [
        'minDimensions' => [10,10],
        'tableOverflow' => true
]]);?>

image

<?php $data = [
    ['US', 'Cheese', 'Yes', '2019-02-12'],
    ['CA;US;UK', 'Apples', 'Yes', '2019-03-01'],
    ['CA;BR', 'Carrots', 'No', '2018-11-10'],
    ['BR', 'Oranges', 'Yes', '2019-01-12'],
];
echo \lengnuan\jexcel\Jexcel::widget(['options' => [
        'data' => $data,
]]);?>