php - html table drag and drop not working in zend framework -
php - html table drag and drop not working in zend framework -
i followed link re-ordering of tables. http://www.webresourcesdepot.com/dynamic-dragn-drop-with-jquery-and-php/
it working fine in normal php, when want integrate in zend framework,i getting error saying "unknown not method" @ $(#tag).sortable()
. not able find problem is. may zend library not supporting html 5.
please help me finding solution.
thanks in advance.
the problem not in zend, since code have posted javascript (jquery).
your problem calling $() function non-string parameter.
$(#tag).sortable()
should $("#tag").sortable()
php jquery html5 zend-framework drag-and-drop
Comments
Post a Comment