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
50ea97bd
Commit
50ea97bd
authored
Dec 29, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edited sorting guide
fixes #6682
parent
ecadfa43
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
output-sorting.md
docs/guide/output-sorting.md
+10
-6
No files found.
docs/guide/output-sorting.md
View file @
50ea97bd
Sorting
=======
Sometimes
data
to be displayed should be sorted according to one or several attributes. If you are using
[
data provider
](
output-data-providers.md
)
with one of the
[
data widgets
](
output-data-widgets.md
)
it
is
handled for you automatically. If not, you should create
[
[\yii\data\Sort
]
] instance in controller
, configure it and
apply it to the query
and then pass it to the view where it can be used to create links to sort by attributes.
Sometimes
the data that is
to be displayed should be sorted according to one or several attributes. If you are using
a
[
data provider
](
output-data-providers.md
)
with one of the
[
data widgets
](
output-data-widgets.md
)
, sorting
is
handled for you automatically. If not, you should create
a
[
[yii\data\Sort
]
] instance
, configure it and
apply it to the query
. I can also be passed to the view, where it can be used to create links to sort by certain attributes.
A typical usage example is as follows,
...
...
@@ -49,4 +49,8 @@ foreach ($models as $model) {
In the above, we declare two attributes that support sorting:
`name`
and
`age`
.
We pass the sort information to the Article query so that the query results are
sorted by the orders specified by the Sort object. In the view, we show two hyperlinks
that can lead to pages with the data sorted by the corresponding attributes.
\ No newline at end of file
that can lead to pages with the data sorted by the corresponding attributes.
The
[
[yii\data\Sort|Sort
]
] class will optain the parameters passed with the request automatically
and adjust the sort options accordingly.
You can adjust the parameters by configuring the
[
[yii\data\Sort::$params|$params
]
] property.
\ No newline at end of file
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