Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
e9363b4e
Commit
e9363b4e
authored
Apr 11, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Looks like GridView has its own section... :)
added a hint and link
parent
a271a712
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
36 deletions
+1
-36
data-widgets.md
docs/guide/data-widgets.md
+1
-36
No files found.
docs/guide/data-widgets.md
View file @
e9363b4e
...
...
@@ -5,43 +5,8 @@ GridView
--------
The
[
[yii\grid\GridView
]
] widget is a powerful tool to create a data grid that provides pagination, sorting
and filtering of the data out of the box.
The GridView gets its data from a
[
data provider
](
data-providers.md
)
which is responsible for sorting and
pagination.
The following code shows a basic example of a gridview showing Users from the database(
`User`
is an
[
active record
](
active-record.md
)
):
and filtering of the data out of the box. See the
[
data grid section
](
data-grid.md
)
for more details.
In the controller action:
```
php
$dataProvider
=
new
ActiveDataProvider
([
'query'
=>
User
::
find
()]);
return
$this
->
render
(
'myview'
,
[
'dataProvider'
=>
$dataProvider
]);
```
In the view
`myview.php`
:
```
php
echo
GridView
::
widget
([
'dataProvider'
=>
$dataProvider
,
'columns'
=>
[
'id'
,
'name'
,
'email'
,
'last_login_date:datetime'
,
[
'class'
=>
'yii\grid\ActionColumn'
,
]
],
]);
?>
```
### Filtering
TDB
### Filtering by related columns
TDB
ListView
--------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment