How to filter CGridView with From Date and To Date datepicker

Comparing #3 with #4

Revision #4 was created by kiran sharma kiran sharma on Jul 17, 2012, 12:07:04 PM.

updated

Content

This artical is related to allow user to filter CGridView with date range using datepicker on submit button. Here I use [Yii Cookie](http://www.yiiframework.com/wiki/152/cookie-management-in-yii/ "Yii Cookie") to preserve date in datepicker textbox after submitting the form. Step 1 : Lets insert below code in your view part where required I create one form for submit the dates ( from_date & to_date ) ### View

```php
[...]
Insert below code in controller
### Controller
[...]
Add two public variable in your model class
### Model
[...]
```

### Demo Image
 
![Image](http://i1147.photobucket.com/albums/o556/master753951/photo_order.png "Image")
 
and this is it as you can filter from date range ... .. .
[...]