Is it possible to open a jQuery UI Dialog without a title bar?
Thanks!
|
|
I believe you can hide it with css:
Or, specific to a particular item:
Checkout "Theming" the Dialog. I don't believe there is a dialog-option to not-render the title bar unfortunately. |
|||||||||||||||
|
|
I figured out a fix for dynamically removing the title bar.
This will remove all elements with the class 'ui-dialog-titlebar' after the dialog box is rendered. |
|||||||||||||||||||||
|
|
I think that the best solution is to use the option An extract from jquery UI docs: during init : or if you want after init. :
So i created some dialog with option dialogClass='noTitleStuff' and the css like that:
too simple !! but i took 1 day to think why my previous id->class drilling method was not working. In fact when you call |
|||||||||||||||||
|
|
You can use jquery to hide titlebar after using dialogClass when initializing the dialog. during init :
By using this method, you don't need to change your css file, and this is dynamic too. |
||||
|
|
|
Actually there's yet another way to do it, using the dialog You can get the Dialog Widget thus
and then do
to hide the and in a single line of code (I like chaining):
No need to add an extra class to the dialog this way, just go at it directly. Workss fine for me. |
||||
|
|
|
Try this
replace |
||||
|
|
|
I use this in my projects
|
|||||||||
|
|
This worked for me:
|
||||
|
|
The one thing I discovered when hiding the Dialog titlebar is that, even if display is none, screen readers still pick it up and will read it. If you already added your own title bar, it will read both, causing confusion. What I did was removed it from the DOM using |
||||
|
|
|
Hmm, none of these answers address the fact that it renders extraneous markup to the page in the first place. Perhaps the real answer is a different plugin or a rewrite. |
|||
|
|
|
I think the cleanest way of doing it would be to create a new myDialog widget, consisting of the dialog widget minus the title bar code. Excising the title bar code looks straightforward. https://github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.dialog.js |
|||
|
|
|
This is the easiest way to do it and it will only remove the titlebar in that one specific dialog;
|
|||
|
|
|
I find it more efficient, and more readable, to use the open event, and hide the title bar from there. I don't like using page-global class name searches.
Simple. |
|||
|
|
I like overriding jQuery widgets.
So you can now setup if you want to show title bar or not
|
|||
|
|
|
This worked for me to hide the dialog box title bar:
|
||||
|
|
|
You could remove the bar with the close icon with the techinques described above and then add a close icon yourself. CSS:
HTML:
//append this div to the div holding your content JS:
|
|||
|
|