Have a view in a QT w/ajax enabled. If I click the tab again, it doesn't refresh. Since it's the second tab, hitting browser refresh returns user to the first tab.
So... would it be possible to add a refresh link or some other method for refreshing a tab without leaving it?

Comments

pasqualle’s picture

Version: 6.x-2.0-rc3 » 6.x-3.x-dev

moving this feature to the next version.

virtualdrupal’s picture

Auto Refresh similar to (http://drupal.org/node/255745) would be awesome...

wizonesolutions’s picture

@Pasqualle, are there any plans for this? If you could outline how I'd do this I may be able to do it and contribute.

gamelodge’s picture

Here is a way you can do it "externally"

@Javascript Code
// Remove the tabpage - Note: by doing this it removes all displays and forces an ajax reload each time you revisit the tab
$('.quicktabs_tabpage').remove();
// ID of the tab you want to click (note this is the "a" id not the "li" id
$('#tabid').trigger('click');

To implement this in the actual module I guess you could simply add "refresh" function that is either called on each click or only when required.

mstef’s picture

avpaderno’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

I am closing this issue, since it's for a Drupal version no longer supported.