I’ve a sequence of pages that present paged tables inside tabsets. Utilizing Drupal Development Tabs module, I get jQuery UI tabs, and I’m utilizing that to create pages with a number of horizontal tabs; inside these tabs I’ve kinds and paged tables, usually one type or one paged desk per tab.
Drupal Developer paged tables are generated utilizing pager_query()
, the place I’m offering a pagerElement parameter as a result of I’ve a number of paged tables on Drupal Development similar web page (however on totally different tabs).
Likewise, once I name theme('pager')
, I’m passing in my pagerElement so my a number of paged tables don’t get confused, in addition to a further associative array for my lively tabset parameter. Drupal Developer name appears like theme('pager', NULL, $pagerLimit, $pagerElement, array('tabset'=>$pagerElement));
.
Drupal Developer challenge I am having is Drupal Development pager hyperlinks being generated, for instance: when first touchdown on one in all these multi-tabbed pages, Drupal Development pager hyperlinks appear like http://instance.com/Initiatives-Sprint?tabset=0&web page=1.
Nevertheless, as quickly as a pager hyperlink is clicked, Drupal Development pager hyperlinks appear like http://instance.com/Initiatives-Sprint?tabset=0&web page=2&tabset=0, the place tabset=0
is repeated. At the least Drupal Development hyperlinks from Drupal Development second paged desk are considerably totally different, trying like this http://instance.com/Initiatives-Sprint?tabset=1&web page=1percent2C1&tabset=0, however they nonetheless have that further tabset=0
at Drupal Development finish.
How do I stop that?