[jQuery] Dialog bug

2010-01-01 Thread Yuriy Pobezhymov
Hello. I have iframe (100% width and height) and jQueryUI dialog on the page. I don't know why, but when I move or resize dialog, it's work not correctly. You could see example here: http://lst.zt.ua/example If I make width:50%, than dialog works very good on blank part of page, but don't work

Re: [jQuery] Dialog bug

2010-01-01 Thread Richard D. Worth
This is because the iframe is picking up the mouse events and not the page that the dialog is in. To prevent this, place a div over the entire iframe during the dialog drag. You can create and position this element in the dialog's dragStart and remove it in the dragStop:

Re: [jQuery] JQuery Dialog, bug when page loading?

2009-11-19 Thread Richard D. Worth
Try this http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content - Richard On Thu, Nov 19, 2009 at 2:48 AM, Nicu Marcu marcu.nico...@gmail.com wrote: Very good solution, working OK. I try to do something like this on tabs, but tabs are hidden permanently. On page

[jQuery] JQuery Dialog, bug when page loading?

2009-11-18 Thread NMarcu
Hello all, I have a question, I'm not sure if is a Dialog bug or I do something wrong. When page is loading(at the beginning). I can see for a short time(approx 1 sec) the component of the Dialog. If I use a confirmation Dialog, with the question: Are you sure?, I get this messages on the

Re: [jQuery] JQuery Dialog, bug when page loading?

2009-11-18 Thread Richard D. Worth
Hide the dialog in the html by putting it in a hidden container, or putting style=display:none; on the element itself. When you call .dialog('open') that attribute will be removed. - Richard On Wed, Nov 18, 2009 at 4:20 AM, NMarcu marcu.nico...@gmail.com wrote: Hello all, I have a

Re: [jQuery] JQuery Dialog, bug when page loading?

2009-11-18 Thread Nicu Marcu
Very good solution, working OK. I try to do something like this on tabs, but tabs are hidden permanently. On page loading, tabs are display for a few sec, without being organize in tabs. How can I resolve this bug with tabs? 2009/11/18 Richard D. Worth rdwo...@gmail.com Hide the dialog in the