[jQuery] Re: UI Dialog: how to remove the title and the X?

2009-04-03 Thread ggerri
thanks Brian, already checked the options, couldnt find this one... On Apr 2, 5:58 pm, brian bally.z...@gmail.com wrote: http://docs.jquery.com/UI/Dialog#options On Thu, Apr 2, 2009 at 11:47 AM, ggerri a...@ggerri.com wrote: Hi there want to show a 'please wait' dialog with UI dialog,

[jQuery] Re: UI Dialog: how to remove the title and the X?

2009-04-03 Thread ggerri
Solved! Thanks a lot Richard for your time and help :-) Would be nice to have two more dialog options title y/n, closer (x) y/ n in a future release- what do you think? Take care and regards from sunny Switzerland Gerald On Apr 2, 6:08 pm, Richard D. Worth rdwo...@gmail.com wrote: You can

[jQuery] Re: UI Dialog: how to remove the title and the X?

2009-04-03 Thread Richard D. Worth
On Fri, Apr 3, 2009 at 4:40 AM, ggerri a...@ggerri.com wrote: Solved! Thanks a lot Richard for your time and help :-) Would be nice to have two more dialog options title y/n, closer (x) y/ n in a future release- what do you think? This has come up before. I'm not convinced it will happen

[jQuery] Re: UI Dialog: how to remove the title and the X?

2009-04-02 Thread brian
http://docs.jquery.com/UI/Dialog#options On Thu, Apr 2, 2009 at 11:47 AM, ggerri a...@ggerri.com wrote: Hi there want to show a 'please wait' dialog with UI dialog, but cant figure out how to remove the title and the X (close dialog) as the dialog should auto-close after the content is

[jQuery] Re: UI Dialog: how to remove the title and the X?

2009-04-02 Thread Richard D. Worth
You can hide it with css: .ui-dialog-titlebar { display: none; } If you want to scope it to a specific class of dialogs, rather than all dialogs, you can combine with the dialogClass option: http://docs.jquery.com/UI/Dialog#option-dialogClass .message .ui-dialog-titlebar { display: none; } ...