Search and Top Navigation
#7653 closed feature (wontfix)
Opened August 18, 2011 11:38PM UTC
Closed August 19, 2011 01:17AM UTC
Last modified October 15, 2011 12:37PM UTC
Addition of "url" option on Dialog
Reported by: | kruncher | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.dialog | Version: | 1.8.15 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When "url" is specified the dialog could automatically generate an IFRAME and present the indicated resource.
I would imagine that the following two options would also be desirable:
- "dialogiframeload" event type that is fired once IFRAME has finished loading.
- Automatically use title of document at "url" when no title (or null) is specified.
Possible usage?
var dialogElement = $.dialog({ url: "http://www.jqueryui.com", // Assume "jQuery UI - Home" for title. title: null, width: 400, height: 200 });
This is pretty simple to do manually and goes against the typical usage of jQuery UI.