I am still very new to Zend Framework and work on my first small Project. I have now come across from Routing, which is a great tool. Unfortunately I do not get it to run on my Ajax Link. I also can’t find any information about it. Is there a way to add routes to an Ajax Link? Thank you very much in advance for any hint. Below is my try, but no sucess.
echo $this->ajaxLink("Remove",array('article' =>$this->escape($entry->id),'deleteB',true),
your ajax link should point just as normal link to the action in your controller. The only thing you need to do is disable rendering view which is by adding:
In my opinion ajax does not need special route. Hope that helps somehow