northernco / datagrid-bundle
Symfony 数据网格组件
5.0.0
2023-10-18 15:00 UTC
Requires
- php: >=8.0
- doctrine/annotations: ^1.14|^2.0
- doctrine/orm: ^2.13
- symfony/config: ^5.2|^6.2
- symfony/dependency-injection: ^5.2|^6.2
- symfony/form: ^5.2|^6.2
- symfony/http-foundation: ^5.2|^6.2
- symfony/http-kernel: ^5.2|^6.2
- symfony/options-resolver: ^5.2|^6.2
- symfony/security-core: ^5.2|^6.2
- symfony/serializer: ^5.2|^6.2
- symfony/translation: ^5.2|^6.2
- twig/twig: ^2.4|^3.0
Requires (Dev)
- ext-intl: *
- dg/bypass-finals: ^1.2
- phpunit/phpunit: ^9.5
- symfony/expression-language: ^5.2|^6.2
- symfony/framework-bundle: ^5.2|^6.2
- symfony/phpunit-bridge: ^5.2|^6.2
Suggests
- ext-intl: Translate the grid
- ext-mbstring: Convert your data with the right charset
- PHPExcel: Export the grid (Excel, HTML or PDF)
- 5.x-dev
- v5.0.x-dev
- 5.0.0
- 4.x-dev
- 4.5.0
- 4.4.0
- 4.3.0
- 4.2.0
- 4.1.0
- 4.0.1.x-dev
- 4.0.1
- 4.0.0
- 3.x-dev
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.2
- 3.0.1
- 3.0.0
- 2.3.0
- 2.2.17
- 2.2.16
- 2.2.1
- 2.1.15
- 2.1.14
- 2.1.13
- v2.0
- v1.0
- dev-automated-testing
- dev-automated-testing-deprecations
- dev-types
- dev-default-column-operators-config
- dev-symfony-6
- dev-make-request-optional
- dev-enspire-108808-massactions-new-tab
This package is auto-updated.
Last update: 2024-09-18 16:47:09 UTC
README
受 Zfdatagrid 和 Magento Grid 启发的 Symfony 数据网格组件。
此组件由 Stanislav Turza (Sorien) 创始。
功能
- 支持实体(ORM)、文档(ODM)和向量(数组)数据源
- 可排序和过滤,支持运算符(比较运算符、范围、以...开头/结尾、(不)包含、是否(不)定义、正则表达式)
- 自动类型化列(文本、数字、布尔值、数组、日期时间、日期、...)
- 支持 DateTime、Date 和 Number 列的本地化(小数、货币、百分比、持续时间、科学记数、文字表达)
- 输入、选择、复选框和单选按钮过滤器,使用网格数据或值数组填充
- 导出(CSV、Excel、PDF、XML、JSON、HTML、...)
- 批量操作
- 行操作
- 支持实体数据源中的映射字段
- 使用安全角色保护列、操作和导出
- 注解和 PHP 配置
- 外部过滤器框
- Ajax 加载
- 分页(您也可以使用 Pagerfanta)
- 列宽和列对齐
- 翻译标题前缀
- 同一页面上的多网格网格管理器
- ORM 和 ODM 数据源的组配置
- 易于模板覆盖(twig)
- 自定义列和过滤器创建
- ...
文档
查看摘要。
截图
包含此CSS 样式文件的完整示例
英文的外部过滤器框简单示例
法语的相同示例
这些截图中使用的数据(这是 phpMyAdmin 的截图)
简单的 ORM 数据源网格
<?php namespace MyProject\MyBundle\Controller; use APY\DataGridBundle\Grid\Source\Entity; class DefaultController extends Controller { public function myGridAction() { // Creates a simple grid based on your entity (ORM) $source = new Entity('MyProjectMyBundle:MyEntity'); // Get a Grid instance $grid = $this->get('grid'); // Attach the source to the grid $grid->setSource($source); // Return the response of the grid to the template return $grid->getGridResponse('MyProjectMyBundle::myGrid.html.twig'); } }
在实体中简单配置网格
<?php namespace MyProject\MyBundle\Entity use Doctrine\ORM\Mapping as ORM; use APY\DataGridBundle\Grid\Mapping as Grid; /** * @Grid\Source(columns="id, my_datetime") */ class MyEntity { /* * @ORM\Column(type="integer") */ protected $id; /* * @ORM\Column(type="datetime") */ protected $my_datetime; }
在 twig 模板中显示网格
<?php <!-- MyProject\MyBundle\Resources\views\myGrid.html.twig --> {{ grid(grid) }}
并清除您的缓存。