Search and Top Navigation
#3271 closed enhancement (wontfix)
Opened August 31, 2008 06:48PM UTC
Closed January 24, 2009 11:25PM UTC
Last modified October 11, 2012 09:15PM UTC
UI Tabs : appendTo
| Reported by: | Remi <remi@gide.net> | Owned by: | klaus.hartl |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | ui.tabs | Version: | 1.6b |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
Would be nice to include appendTo option to ui.tabs.
Useful.
Replace :
$panel.appendTo(this.element[0].parentNode);
by
$panel.appendTo(o.appendTo != null ? $(o.appendTo) : this.element[0].parentNode);
And add an option default
appendTo : null
And it allows to append tabs to another container.
Attachments (0)
Change History (5)
Changed October 20, 2008 05:59PM UTC by comment:1
| milestone: | 1.6 → 1.7 |
|---|
Changed January 22, 2009 03:11PM UTC by comment:2
| milestone: | 1.next → TBD |
|---|
Changed January 24, 2009 11:00AM UTC by comment:3
| priority: | major → minor |
|---|
Changed January 24, 2009 11:25PM UTC by comment:4
| resolution: | → wontfix |
|---|---|
| status: | new → closed |
I don't see the need for an option, this can easily be achieved with an add handler (which is why we have these callbacks):
add: function(event, ui) {
$(ui.panel).appendTo('#here');
}
Changed October 11, 2012 09:15PM UTC by comment:5
| milestone: | TBD |
|---|
Milestone TBD deleted
Deferred to 1.7: New options need documentation updates, too later for 1.6.