You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, there is very nice extension, but it doesn't work as expected view CListView(GridView).
The problem occurs in sorting and paging elements. After execution of createUrl() method, slash converts to html representation "%2F", and page throws 404 error code.
As temporary fix, I override createUrl() method in Controller.php class.
<?php
public function createUrl($route, $params=array(),$ampersand='&')
{
$url = parent::createUrl($route, $params,$ampersand);
$url = str_replace('%2F', '/', $url);
return $url;
}
?>
Maybe I missed something when configuring, but at first glance - not :)
The text was updated successfully, but these errors were encountered:
Hi, there is very nice extension, but it doesn't work as expected view CListView(GridView).
The problem occurs in sorting and paging elements. After execution of createUrl() method, slash converts to html representation "%2F", and page throws 404 error code.
As temporary fix, I override createUrl() method in Controller.php class.
Maybe I missed something when configuring, but at first glance - not :)
The text was updated successfully, but these errors were encountered: