PHP Classes

File: docs/column/date.md

Recommend this page to a friend!
  Classes of Matous Nemec   PHP Data Grid View   docs/column/date.md   Download  
File: docs/column/date.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PHP Data Grid View
Display data in an editable grid on a Web page
Author: By
Last change:
Date: 2 years ago
Size: 2,724 bytes
 

Contents

Class file image Download

Implements

Methods for ^Mesour\DataGrid\Column\Date^

| Method | Default | Possible values | Returns | Required | Description | |---------------|:-------:|----------------------|-------------------------------|----------|-----------------------------------------------------------| | setFormat | Y-m-d | string $format | ^Mesour\DataGrid\Column\Date^ | no | Set the format of the date | | setCallback | none | callable $callback | ^Mesour\DataGrid\Column\Date^ | no | If you use callback, column shows output of this callback |

Callback parameters for method setCallback

| Parameter | Type | Description | |------------------|:-----------------------------------------------:|------------------------| | $column | ^Mesour\DataGrid\Column\Date^ | Number column instance | | $rowData | ^Mesour\Sources\ArrayHash^ / Entity / ActiveRow | Data for current row | | $date | DateTime | DateTime instance | | $FormattedDate | string | Formatted date |

Events

=info=[Info] See onRenderon events page

Usage

$mesourApp = //instance Mesour\Components\Application\IApplication
$source = //some <a href="http://components.mesour.com/version3/component/sources/" target="_blank">data source</a> or two-dimensional array
$source->setPrimaryKey('user_id');

$grid = new Mesour\UI\DataGrid('numberDataGrid', $mesourApp);

$grid->setSource($source);

$grid->addText('name', 'Name');

$grid->addText('surname', 'Surname');

$grid->addText('email', 'E-mail');

//! here add date column
$grid->addDate('last_login', 'Last login')
    ->setFormat('Y-m-d H:i:s');

$grid->render();