jQuery: The Write Less, Do More JavaScript Library

Is the dialog.bgiframe option no longer necessary?

View: New views
6 Messages — Rating Filter:   Alert me  

Is the dialog.bgiframe option no longer necessary?

by Fontzter-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


It seems I had inadvertently left this option in some code after
upgrading (now at 1.5.2).  I didn't see it in the API docs anymore.
I'm assuming that this might be auto detected now.  Is that true?

thanks,  dave

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "jQuery UI" group.
To post to this group, send email to jquery-ui@...
To unsubscribe from this group, send email to jquery-ui-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Is the dialog.bgiframe option no longer necessary?

by Fontzter-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Apparently, it is still needed.  Select boxes show through the dialog
in IE without it being set to true.  Could this be set to true by
default?  Or set to true by default if $.browser.msie?

On Jul 22, 11:58 am, Fontzter <dmfo...@...> wrote:
> It seems I had inadvertently left this option in some code after
> upgrading (now at 1.5.2).  I didn't see it in the API docs anymore.
> I'm assuming that this might be auto detected now.  Is that true?
>
> thanks,  dave
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "jQuery UI" group.
To post to this group, send email to jquery-ui@...
To unsubscribe from this group, send email to jquery-ui-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Is the dialog.bgiframe option no longer necessary?

by Richard D. Worth-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm not sure it makes sense to set it to true by default because of the dependence on the bgiframe plugin, which is external. Scott, what do you think?

- Richard

On Fri, Jul 25, 2008 at 3:45 PM, Fontzter <dmfontz@...> wrote:

Apparently, it is still needed.  Select boxes show through the dialog
in IE without it being set to true.  Could this be set to true by
default?  Or set to true by default if $.browser.msie?

On Jul 22, 11:58 am, Fontzter <dmfo...@...> wrote:
> It seems I had inadvertently left this option in some code after
> upgrading (now at 1.5.2).  I didn't see it in the API docs anymore.
> I'm assuming that this might be auto detected now.  Is that true?
>
> thanks,  dave



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "jQuery UI" group.
To post to this group, send email to jquery-ui@...
To unsubscribe from this group, send email to jquery-ui-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Is the dialog.bgiframe option no longer necessary?

by shelane :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


How do you set it to true? I don't see it in the docs.

On Jul 25, 12:51 pm, "Richard D. Worth" <rdwo...@...> wrote:

> I'm not sure it makes sense to set it to true by default because of the
> dependence on the bgiframe plugin, which is external. Scott, what do you
> think?
>
> - Richard
>
> On Fri, Jul 25, 2008 at 3:45 PM, Fontzter <dmfo...@...> wrote:
>
> > Apparently, it is still needed.  Select boxes show through the dialog
> > in IE without it being set to true.  Could this be set to true by
> > default?  Or set to true by default if $.browser.msie?
>
> > On Jul 22, 11:58 am, Fontzter <dmfo...@...> wrote:
> > > It seems I had inadvertently left this option in some code after
> > > upgrading (now at 1.5.2).  I didn't see it in the API docs anymore.
> > > I'm assuming that this might be auto detected now.  Is that true?
>
> > > thanks,  dave
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "jQuery UI" group.
To post to this group, send email to jquery-ui@...
To unsubscribe from this group, send email to jquery-ui-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Is the dialog.bgiframe option no longer necessary?

by Richard D. Worth-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm not seeing it in the docs now either. I thought it was there. You set it like this (currently):

$("#myDiv").dialog({ bgiframe: true });

Requires you to have the bgiframe plugin also on the page. Scott and I will discuss this with the rest of the team and we'll come up with a plan. Thanks.

- Richard

On Fri, Jul 25, 2008 at 4:11 PM, Shelane <senos@...> wrote:

How do you set it to true? I don't see it in the docs.

On Jul 25, 12:51 pm, "Richard D. Worth" <rdwo...@...> wrote:
> I'm not sure it makes sense to set it to true by default because of the
> dependence on the bgiframe plugin, which is external. Scott, what do you
> think?
>
> - Richard
>
> On Fri, Jul 25, 2008 at 3:45 PM, Fontzter <dmfo...@...> wrote:
>
> > Apparently, it is still needed.  Select boxes show through the dialog
> > in IE without it being set to true.  Could this be set to true by
> > default?  Or set to true by default if $.browser.msie?
>
> > On Jul 22, 11:58 am, Fontzter <dmfo...@...> wrote:
> > > It seems I had inadvertently left this option in some code after
> > > upgrading (now at 1.5.2).  I didn't see it in the API docs anymore.
> > > I'm assuming that this might be auto detected now.  Is that true?
>
> > > thanks,  dave



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "jQuery UI" group.
To post to this group, send email to jquery-ui@...
To unsubscribe from this group, send email to jquery-ui-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Is the dialog.bgiframe option no longer necessary?

by Fontzter-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Would it make sense to check for the existence of the bgiframe plugin
and set it to true if $.browser.msie?

The defaults aren't that big of a deal.  I just saw that it was gone
from the documentation, assumed it was no longer needed and removed it
from my code.  I guess it just needs to go back in the docs really.

Thanks,

Dave


On Jul 25, 3:51 pm, "Richard D. Worth" <rdwo...@...> wrote:

> I'm not sure it makes sense to set it to true by default because of the
> dependence on the bgiframe plugin, which is external. Scott, what do you
> think?
>
> - Richard
>
> On Fri, Jul 25, 2008 at 3:45 PM, Fontzter <dmfo...@...> wrote:
>
> > Apparently, it is still needed.  Select boxes show through the dialog
> > in IE without it being set to true.  Could this be set to true by
> > default?  Or set to true by default if $.browser.msie?
>
> > On Jul 22, 11:58 am, Fontzter <dmfo...@...> wrote:
> > > It seems I had inadvertently left this option in some code after
> > > upgrading (now at 1.5.2).  I didn't see it in the API docs anymore.
> > > I'm assuming that this might be auto detected now.  Is that true?
>
> > > thanks,  dave
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "jQuery UI" group.
To post to this group, send email to jquery-ui@...
To unsubscribe from this group, send email to jquery-ui-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

LightInTheBox - Buy quality products at wholesale price!