trogloig/datagrid-bundle

Symfony Datagrid Bundle

安装: 13

依赖者: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 344

类型:symfony-bundle

3.0.22 2017-09-14 14:43 UTC

README

受 Zfdatagrid 和 Magento Grid 启发的 Symfony2 Datagrid。
此捆绑包由 Stanislav Turza (Sorien) 初始化。

Build Status Stories in Ready Gitter

请参阅 变更日志升级 2.0

功能

  • 支持实体 (ORM)、文档 (ODM) 和向量 (数组) 源
  • 可排序和可过滤,带有运算符(比较运算符、范围、以...开头/结尾、(不)包含、是否(不)定义、正则表达式)
  • 自动类型化列(文本、数字、布尔值、数组、日期时间、日期等)
  • 支持日期时间、日期和数字列的本地化(十进制、货币、百分比、持续时间、科学、拼写)
  • 输入、选择、复选框和单选按钮过滤器,填充网格数据或值数组
  • 导出(CSV、Excel、PDF、XML、JSON、HTML 等)
  • 批量操作
  • 行操作
  • 支持实体源的映射字段
  • 使用安全角色保护列、操作和导出
  • 注解和 PHP 配置
  • 外部过滤器框
  • Ajax 加载
  • 分页(您也可以使用 Pagerfanta)
  • 列宽和列对齐
  • 翻译标题前缀
  • 同一页面上多网格的网格管理器
  • ORM 和 ODM 源的组配置
  • 轻松覆盖模板(twig)
  • 创建自定义列和过滤器
  • ...

文档

请参阅 摘要

屏幕截图

CSS 样式文件 中的完整示例

test

英文中的简单示例,具有外部过滤器框

test

法语中的相同示例

test

这些屏幕截图中使用的数据(这是一个 phpMyAdmin 屏幕截图)

test

具有 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) }}

然后清除您的缓存。