Hi, I try to adapt the DAMP Gallery MVC sample to my reality.
I currently use MVC with custom Controller like:
public class IndexMainController : PageContenuController
{
//
// GET: /FrontPage/
public ActionResult IndexMain()
{
var model = new IndexMainModel();
return View(model);
}
}
then PageContenuController derived from RenderMvcController.
I acheive all the thumbnail part, and correct paging. I try now to load the page2 from a ajax call but I am stuck with 404 not found.
On my product page I got the gallery section like DAMP:
Need help with loding partial view with Ajax
Hi, I try to adapt the DAMP Gallery MVC sample to my reality. I currently use MVC with custom Controller like:
then PageContenuController derived from RenderMvcController. I acheive all the thumbnail part, and correct paging. I try now to load the page2 from a ajax call but I am stuck with 404 not found.
On my product page I got the gallery section like DAMP:
That call a Partial view:
@{
}
Then in the js file I need to do:
});
But that do not work... Any suggestion?
is working on a reply...