Clistview Ajax Update

Hello

I was trying to do CListView Ajax Update. It works like charm but when i enabled url manager or did something in .htaccess then all of sudden it stopped working.

when you click the sorting items it does not makes request to server (seen by Firebug)

It says


Uncaught TypeError: Cannot call method 'match' of undefined jquery.ba-bbq.js:257

jq_param_sub jquery.ba-bbq.js:257

(anonymous function) jquery.ba-bbq.js:128

$.fn.yiiListView.update jquery.yiilistview.js:122

(anonymous function) work:540

f.event.dispatch jquery.min.js:3

h.handle.i jquery.min.js:3



What direction should i move in debugging this error?

if you want to see it for yourself you can see it here http://allspicetech.com/site/work

url manager is here


'urlManager'=>array(

          'urlFormat'=>'path',

            'showScriptName'=>false,

          /*'rules'=>array(

          '<controller:\w+>/<id:\d+>'=>'<controller>/view',

          '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',

          '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',

          ),*/

          ),



.htaccess file


Options +FollowSymLinks

IndexIgnore */*

RewriteEngine on





# if a directory or a file exists, use it directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d


# otherwise forward it to index.php

RewriteRule . index.php

The problem was solved by adding url to the options of listview update call

Thank you very much for posted the solution. You save my script !

Best Regards

Martin