Re: jQuery alternative to cfwindow?

2010-06-18 Thread Joe None
The cfwindow example on riaforge looks good and the load external URL would work great. I'll give this one a shot. Again, thanks for the help guys. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfu

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Brian McCairn
http://cfwindow.riaforge.org/ ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Scott Stroz
Nope not at all. jQuery UI dialog has a modal property, and if you are loading the contents of the dialog via AJAX request, you can pass any data you like in the request. On Fri, Jun 18, 2010 at 8:23 AM, Joe None wrote: > > Thanks for the tips guys. What I like about cfwindow though is it has th

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Joe None
Thanks for the tips guys. What I like about cfwindow though is it has the modal option AND I can pass a variable into it. I'll take the variable sent in and custom the cfwindow, as well as track certain data from the cfwindow. This may be a bit too much to ask from jQuery. ~~

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Raymond Camden
jQuery UI which has > widgets like that. Alternately ExtJS (now Sencha) offers the same widgets > along with a LOT more stuff. > > > andy > > -Original Message- > From: Joe None [mailto:drue...@comcast.net] > Sent: Friday, June 18, 2010 6:14 AM > To: cf-

RE: jQuery alternative to cfwindow?

2010-06-18 Thread andy matthews
AM To: cf-talk Subject: jQuery alternative to cfwindow? Is there a library or simple method to duplicate what cfwindow does with jQuery? I'm on an older version of CF and like the modal pop-up window cfwindow creates. If this is an option in jQuery could someone point me to an example?

jQuery alternative to cfwindow?

2010-06-18 Thread Joe None
Is there a library or simple method to duplicate what cfwindow does with jQuery? I'm on an older version of CF and like the modal pop-up window cfwindow creates. If this is an option in jQuery could someone point me to an example? Thank you

Re: alternative to cfwindow

2009-06-29 Thread LI, Chunshen (Don)
Thanks, Cutter, I need to go a step above that with Ext. What I'd like to do is: launch two windows (one main with attribute show="true" and the other small one with attribute show="false") then upon certain event or its trigger, send one form element to the small window (its underlying cf scrip

Re: alternative to cfwindow

2009-06-29 Thread Cutter (ColdFusion)
Yes, with Ext it's fairly easy: var calWin = new Ext.Window({ title: 'Calendar', contentEl: 'calendarDiv', // This is a hidden div (class="x-hidden") on the page, containing your calendar width: 200, height: 200, modal: true, border: true }); calWin.show(); St

alternative to cfwindow

2009-06-28 Thread Don L
I'm wondering with ext:window if we can load up a small window floating over main window (with cf8, yes one can), so as to pop up a tiny floating calendar based on need. Or other options to do that? Thanks. Don ~| Want to r