Archive for category jQuery

Symfony jq_sortable_element not passing parameters to action – fix

after a long debug session. i found this fix

in the jQueryHelper.php

change this line
$options['with'] = "jQuery('#$element_id').sortable('serialize', { key: 'order'})";

to

$options['with'] = "jQuery('#$element_id').sortable('serialize', { key: 'order[]'})";

in the action ;

$order = $this->getRequestParameter('order');

No Comments

Jquery Dock Menu

I found this jQuery menu that mimicks the mac dock menu, very nice…

>>>

If you are a big Mac fan, you will love this CSS dock menu. It is using Jquery library and Fisheye component from Interface and some of my icons. It comes with two dock position: top and bottom. This jQuery dock menu is perfect to add on to my iTheme. Here I will show you how to implement it to your web page.

No Comments