Re: [jQuery] Re: dialog box

2009-12-22 Thread Richard D. Worth
On Mon, Dec 21, 2009 at 11:01 PM, Jojje jojjsus_chr...@hotmail.com wrote: oh ok :) Thanks for taking time to answer :) So now i got this, it works but it sends the ajax calls twice. is it maybe because i set the callback wrong? the callback argument gets: function() {

[jQuery] Re: dialog box

2009-12-21 Thread Jojje
oh ok :) Thanks for taking time to answer :) So now i got this, it works but it sends the ajax calls twice. is it maybe because i set the callback wrong? the callback argument gets: function() { fGbDelete(gbid,link); } Shouldn´t it get just: fGbDelete(gbid,link)? Or why is it triggering

[jQuery] Re: Dialog Box Trouble w/ Variables

2009-07-14 Thread James
Why on earth do you have: var modal = modal; ??? It doesn't make sense... Aside from that weirdness, you should set your code like: var content = { modal:true }; var $dialog = $(iframe frameborder='0' scrolling='no' allowtransparency='true' src='modals/ + modalID + .html'/iframe)

[jQuery] Re: dialog box plugin

2008-12-11 Thread Raghu
Please ignore this mail. ClueTip plugin will solve my problem. Thanks On Thu, Dec 11, 2008 at 2:11 PM, Raghu techhel...@gmail.com wrote: Hi, I am looking for jquery plugin which shows dialog box on mouseover event... Dialog box must disappear on mouseout event and reapper on mouseover event.

[jQuery] Re: Dialog box that auto expands depending on content

2008-10-29 Thread Ettiene
Well I see in Firefox (using Firebug) that if you set div class=dialog_box ui-dialog-content ... to have height: auto then it'll expand as the content in the dialog expands. You using a Jquery UI dialog plugin? Ettiene On Oct 29, 12:51 pm, ryanhavoc [EMAIL PROTECTED] wrote: I have a form that

[jQuery] Re: Dialog box that auto expands depending on content

2008-10-29 Thread ryanhavoc
Yeah the jQuery UI Dialog plugin. On Oct 29, 11:43 am, Ettiene [EMAIL PROTECTED] wrote: Well I see in Firefox (using Firebug) that if you set div class=dialog_box ui-dialog-content ... to have height: auto  then it'll expand as the content in the dialog expands. You using a Jquery UI dialog

[jQuery] Re: Dialog box that auto expands depending on content

2008-10-29 Thread ryanhavoc
I've fixed it. Set a line of jQuery to set the height to auto for ui- dialog-content. Wouldn't work through just CSS. Cheers On Oct 29, 12:01 pm, ryanhavoc [EMAIL PROTECTED] wrote: Yeah the jQuery UI Dialog plugin. On Oct 29, 11:43 am, Ettiene [EMAIL PROTECTED] wrote: Well I see in

[jQuery] Re: dialog box position

2008-10-17 Thread Zemian Deng
Can some one help? Thanks, -Z On Tue, Oct 14, 2008 at 3:34 PM, Zemian Deng [EMAIL PROTECTED]wrote: Hello list, I am trying to show a dialog box when user hover a link. The following works on firefox only. Is there better way to do it via jQuery(or browser independent) way? a href=#

[jQuery] Re: Dialog Box Too Small

2008-09-18 Thread MorningZ
Well, the object isn't going to take on the width/height of the background Have you tried to explicitly set width and height right there in your CSS?

[jQuery] Re: Dialog Box Too Small

2008-09-18 Thread Richard D. Worth
The dialog plugin has width and height options: $(#myEl).dialog({ width: 500, height: 730 }); If you want to change either after init, you can do so by $(#myEl).data(width.dialog, 600).data(height.dialog, 700); - Richard On Thu, Sep 18, 2008 at 3:07 PM, Brad M [EMAIL PROTECTED] wrote: