Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samdark/a-guide-to-yii-grids-lists-and-data-providers
A guide to Yii framework grids, lists and data providers
https://github.com/samdark/a-guide-to-yii-grids-lists-and-data-providers
book yii
Last synced: 28 days ago
JSON representation
A guide to Yii framework grids, lists and data providers
- Host: GitHub
- URL: https://github.com/samdark/a-guide-to-yii-grids-lists-and-data-providers
- Owner: samdark
- Created: 2011-10-21T15:24:53.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-09-21T10:20:48.000Z (over 12 years ago)
- Last Synced: 2023-03-14T07:15:26.172Z (almost 2 years ago)
- Topics: book, yii
- Homepage:
- Size: 115 KB
- Stars: 25
- Watchers: 8
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
A guide to Yii grids, lists and data providers
==============================================Grids, lists and data providers are good addition to Yii core. These were originally
a part of zii, official extension library that was later merged with the framework
itself.Typically, you would take the following steps when working with components such as grids, lists and data providers.
1. Supply data (in the form of “ar model”, “arrays” or “sql result set”) to a data provider (such as `CActiveDataProvider`, `CArrayDataProvider` and `CSqlDataProvider`) .
2. Use a widget component (such as `CListView` or `CGridView` ) and configure it to display the data.
3. Customize the widget to reflect the presentational style that you are after.
In this guide all these topics will be covered in detail.~~~
data-provider-intro
data-providers
list-intro
list-xxx
grid-intro
grid-columns
grid-filtering
~~~