Search and Top Navigation
#9478 closed bug (notabug)
Opened August 05, 2013 04:18PM UTC
Closed August 05, 2013 04:22PM UTC
UI dialog's show complete() option overridden by default callback function
| Reported by: | ktraff | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | none |
| Component: | ui.dialog | Version: | 1.10.3 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
It seems that UI 1.10.3 no longer supports providing a complete() callback function on show effect options for UI Dialog components:
This works in jQuery UI 1.9.2 (jQuery 1.8.3): http://jsfiddle.net/ktraff/sfuVu/3/
But no longer works in UI 1.10.3 (jQuery 1.9.1): http://jsfiddle.net/ktraff/jMGvY/8/
If you replace line 806 in jquery-ui.js from:
options.complete = callback;
to:
options.complete = $.isFunction(options.complete) ? options.complete : callback;
the issue appears to be fixed, though I haven't done enough testing to prove that other side-effects of this patch don't break other components.
Attachments (0)
Change History (1)
Changed August 05, 2013 04:22PM UTC by comment:1
| resolution: | → notabug |
|---|---|
| status: | new → closed |
The
showoption is for specifying what effect to use, if any. It is not for binding callbacks. The documentation purposely does not mention callbacks, and only specifiedeffect,delay,duration, andeasingas possible properties. You should use thefocusevent if you want to know when the dialog has finished opening.