How to call controller / action within zend through jquery / ajax?
I tried this
<script> $(function() { $(".tbl_repeat tbody").tableDnD({ onDrop: function(table, row) { var orders = $.tableDnD.serialize(); $.post("<?php echo $this->baseUrl();?>/Indexcodelist/indexcodelistsearch/",{order : orders }); } }); }); </script>
this code does not call the controller action method, how can I achieve it?
jquery php zend-framework
kapil
source share