ViewsDisplayTabs are great - thanks very much!

how do folks provide for a return back to the TABS View once some content has been clicked on one of the tabs?

Comments

solipsist’s picture

This is a general problem with asynchronous page content. One option is to use VDT without AJAXified views which means the paging won't work with AJAX but the standard way. That will reflect the page's state in the URL and make sure the back button works as expected.

We built an AJAX based product search for a client and they commented on this limitation, and asked us to fix it. We used JavaScript to cache the form changes on the page in the URL and then restore them on page load. That way the browser would store the page URL and its state in the browser history and back would work as expected. It's not been deployed yet so I can't show you, but it's hopefully out soon.