Ticket #5857 (closed bug: duplicate)
Tabs should use context when searching for panels
| Reported by: | petersendidit | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.9.0 |
| Component: | ui.tabs | Version: | 1.8.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
If a tabs href is a valid hash then tries to push that panel in to the panels array. This works great if the tabs are already in the document but if they are in a documentFragment then this fails.
The fix is easy. Just change this line in the _tabify function
self.panels = self.panels.add(self._sanitizeSelector(href));
to
self.panels = self.panels.add(self._sanitizeSelector(href), self.element);
Now it will handle the tabs not being part of the document yet.
Change History
comment:2 Changed 3 years ago by scott.gonzalez
- Keywords tabs removed
- Component changed from ui.core to ui.tabs
comment:3 Changed 3 years ago by waldmang
Same apply also to the $show element: $show = $(self._sanitizeSelector(this.hash));
should be
$show = $(self._sanitizeSelector(this.hash),self.element);
Note: See
TracTickets for help on using
tickets.


Stack Overflow question that got me searching:
http://stackoverflow.com/questions/3320791/why-are-some-jquery-ui-operations-unsuccessful-on-disembodied-dom-elements