Hello thank you for your answer.
I’ve installed the new one and still the same problem.
When i go to my location page (which contain a list of cities), it display 700 000 results.
localhost/web/index.php/location/ (sorry i bad copy/past in the older post)
1. When i use this code :
<?php $this->widget(‘zii.widgets.CListView’, array(
'dataProvider'=>$dataProvider,
'itemView'=>'_view',
)); ?>
–> when i go the page 2, the page isn’t reloaded, the data are reloded in ajax, nothing change in the url. I access to the page 2 but i can’t go back with browser history.
2. When i use your code :
I copy all your files in the "extension" folder so it looks like :
"extensions/RRListView/RRListView.php" and "extentions/RRListView/RRListView/jquery.rr.yiilistview.js" files.
In the config main i have :
'import'=>array(
'application.models.*',
'application.components.*',
'application.extensions.*',
),
And in my location view file (instead of zii.widgets.CListView) :
<?php $this->widget(‘ext.RRListView.RRListView’, array(
'dataProvider'=>$dataProvider,
'itemView'=>'_view',
)); ?>
These are the only things i did.
And when i access to the page "localhost/web/index.php/location/" it show the first page, wich is great but when i access to the page 2, it reload the entire page, show the page 2, and it change the url to "localhost/web/index.php/location/index?Location_page=2" instead of "#page=2" (maybe… ?)
(the exactly same thing than zii.widgets.CListView WITHOUT javascript one the client --> for safety)
So nothing happened in Firebug… no js error, nos ajax call…
I am new to the yiiFramework… sorry if i misunderstood something.
Thank you for your share and your time man,
Manu