How do I remove the close button (the X in the top right corner) on a dialog box created by jQueryUI?
|
feedback
|
|
I have found this worked in the end (note the third line overriding the open function which find the button and hides it):
| |||||||||||||||||||||
feedback
|
|
Here is another option just using CSS that does not over ride every dialog on the page. The CSS
The HTML
The Javascript.
| |||||||||||||||||||||
feedback
|
|
the "best" answer will not be good for multiple dialogs. here is a better solution.
| |||||||
feedback
|
|
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." | |||||||||||||||||||||
feedback
|
|
I think this is better.
| |||
|
feedback
|
| |||||
feedback
|
|
The best way to hide the button is to filter it with it's data-icon attribute:
| |||
|
feedback
|
|
http://jsfiddle.net/marcosfromero/aWyNn/
| |||
|
feedback
|
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! | ||||
|
feedback
|
|
For the deactivating the class, the short code:
may be used. | |||
|
feedback
|
|
None of the above works. The solution that really works is:
Please check if it works for you. | |||
|
feedback
|
|
Once you have called
Alternate method: Inside dialog event handlers,
FYI, dialog markup looks like this:
Demos here | ||||
|
feedback
|
|
Robert MacLean's answer did not work for me. This however does work for me:
| |||
|
feedback
|
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.