How do I remove the close button (the X in the top right corner) on a dialog box created by jQueryUI?
|
|
I have found this worked in the end (note the third line overriding the open function which find the button and hides it):
To hide the close button on all dialogs you can use the following CSS too:
|
|||||||||||||||||||||
|
|
Here is another option just using CSS that does not over ride every dialog on the page. The CSS
The HTML
The Javascript.
|
|||||||||||||||||||||
|
|
the "best" answer will not be good for multiple dialogs. here is a better solution.
|
|||||||||||||
|
|
You can use CSS to hide the close button. What I mean is that CSS can be used directly instead of JavaScript
Also I can not accept the answer I am not wrong but -1, I just tell you approach, I do not intend to tell you the specific answer. I do not know if you have not heard of a proverb that is "if you give man a fish,he will have a single meal,but if you teach man to fish, feed him whole life." |
|||||||||||||||||||||
|
|
I think this is better.
|
|||
|
|
|
Robert MacLean's answer did not work for me. This however does work for me:
|
|||||
|
|
Once you have called
Alternate method: Inside dialog event handlers,
FYI, dialog markup looks like this:
Demos here |
||||
|
|
|
|||||
|
|
The best way to hide the button is to filter it with it's data-icon attribute:
|
|||
|
|
|
As shown on the official page and suggested by David: Create a style:
Then, you can simply add the no-close class to any dialog in order to hide it's close button:
|
|||||
|
|
http://jsfiddle.net/marcosfromero/aWyNn/
|
|||
|
|
yaaaay! It's really working! I catch the close event of the dialog box. In the above code, it removes the div (#dhx_combo_list). Great, thanks you all! |
||||
|
|
|
For the deactivating the class, the short code:
may be used. |
|||
|
|
|
None of the above works. The solution that really works is:
Please check if it works for you. |
|||
|
|
|
The close button added by the Dialog widget has the class 'ui-dialog-titlebar-close', so after your initial call to .dialog(), you can use a statement like this to remove the close button again: It works..
|
|||
|
|
|
What about simply disabling the close with the beforeClose callback:
|
|||||
|
|
You can also remove your header line:
which removes the close button. |
|||
|
|
protected by Shog9♦ Apr 20 '11 at 5:28
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
