Im calling a restfull api and this gives me some "summary" information about products based on a search query. The result is presented on a page. After this is presented i want the page to (ajax?) load additional information like all the images of the products without the user noticing. The images will be async loaded into a carousel. The question is how would i achieve this?
Should i call a controller action from my view? I tried this but i cannot call an async function as child. So I figured i call a javascript function and let that do an ajax call to get the images.
My question is is this the best approach? and will this slow down the view?