#8484 closed bug (fixed)
Text of buttons in dialog is not shown with jquery 1.8.0
Reported by: | matzes | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.8.23 |
Component: | ui.dialog | Version: | 1.8.22 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The text of buttons in dialog will not appear when used with jquery 1.8.0. Only an empty button is shown. http://jsbin.com/esokix/3
Works as expected with jquery 1.7.2 http://jsbin.com/esokix/2
$("#dlg").dialog({ buttons: [ { text: "close" } ] });
Change History (11)
comment:1 Changed 11 years ago by
comment:4 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Dialog: Don't use $.attrFn since it's empty in jQuery 1.8.0. Fixes #8484 - Text of buttons in dialog is not shown with jquery 1.8.0.
Changeset: 5e935ead9fbfb0ab368a9828a4d4b8d17eb38d5c
comment:5 Changed 11 years ago by
Milestone: | 1.9.0 → 1.8.23 |
---|
In the meantime, you can either delete $.attrFn;
or if ( $.attrFn ) { $.attrFn.text = true; }
.
comment:9 follow-up: 10 Changed 11 years ago by
don't forget you can use the code below after initializing the dialog in the interim without having to modify the actual jquery script! :)
$("#confirm_dialog").parent().find("button[text='Ok']").find("span").html("Ok");
comment:10 Changed 11 years ago by
Replying to staticdream:
don't forget you can use the code below...
As I mentioned above, a better fix is to just delete $.attrFn
after loading jQuery.
same as the one I reported some seconds after :)
http://bugs.jqueryui.com/ticket/8485
maybe merge both with both examples