Ben
(Benjamin Woester)
April 6, 2012, 3:56pm
1
2756
On the first page of the search results, the pagination styling seems to be broken (no idea if this is related to the second problem).
2757
Also, forum posts that have no icon associated, seem to cause problems.
Checked this with Chrome and IE, same behavior.
mdomba
(Maurizio Domba Cerin)
April 6, 2012, 6:36pm
2
This seems like a browser problem…
Just tested on linux firefox 10.0.2 and chrome 17.0 - all is OK
mdomba
(Maurizio Domba Cerin)
April 6, 2012, 6:37pm
3
[color="#008000 "]NOTE: moved to proper section (Yii Project Site instead of Bug Discussion)[/color]
Ben
(Benjamin Woester)
April 6, 2012, 9:16pm
4
Confirmed. It’s working now.
za_al
(Zakieh Alizadeh)
October 10, 2012, 7:39am
5
I had the same problem on the site myself.
This problem occurs when the water we use clistView class .and not povide data for ‘dataProvider’ property.
This problem often occurs when searching. Because the first string is sent to the search action., But when we click on the next page. These parameters can not be added to the action search.
for example in code:
public function actionCentralSearch() {
$model=new searchForm;
if(isset($_POST['searchForm']))
{
$model->attributes=$_POST['searchForm'];
if($model->validate())
{
$vulnerData= Vulner::model()->centralSearch($model->searchSTR);
$newsData= News::model()->centralSearch($model->searchSTR);
}
}
$this->render('search_result',array(
'model'=>$model,
// 'faqData'=>(isset($faqData))?($faqData):null,
'newsData'=>(isset($newsData))?($newsData):null,
'vulnerData'=>(isset($vulnerData))?($vulnerData):null,
));
}
I think its a CSS issues or might be problem of chrome browser might not support
Ben:
2756
On the first page of the search results, the pagination styling seems to be broken (no idea if this is related to the second problem).
2757
Also, forum posts that have no icon associated, seem to cause problems.
Checked this with Chrome and IE, same behavior.