CFFORM, Checkbox and Binding

2007-12-10 Thread Bruce H. Sorge
I have been searching for the answer to this with no luck (or perhaps I 
don't know what I am looking for?).
Anyway, I have a CFFORM with the Flash attribute for editing users from 
a cfgrid. All is working well (The grid and text data bindings anyway) 
except for the checkbox. Basically, if the person being edited is an 
admin, then I want the check box checked when selecting the particular 
user out of the grid, otherwise it is not checked.

Thanks,

Bruce

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294462
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Flash Form Select List Wierdness

2007-12-05 Thread Bruce H. Sorge
Ahh, I had the height set to 150. Changed it to 300 and it is working fine.


Thanks,

Bruce

Josh Nathanson wrote:
> Is the select list located near the bottom of the page?  I think this will 
> cause it to open "up" so that it doesn't run off the bottom of the page.
> 
> -- Josh
> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294260
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Flash Form Select List Wierdness

2007-12-05 Thread Bruce H. Sorge
Good afternoon all,
I have a flash form with a dynamic select list that is working fine 
except that when I click on it, all of my departments go up (the select 
list is opening up rather than down like normal). Anyone seen this 
before and knows what causes it?

Thanks,

Bruce

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294257
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Spry_Forum?

2007-11-29 Thread Bruce H. Sorge
I found one on Adobe's website.

http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602

Bruce

Chad Gray wrote:
> Is there a spry forum to ask questions and search for answers?
> 
> I want to see if it is possible to click a check box and have a tab disabled 
> or enabled.
> 
> So the first tab will ask something like "what tabs do you want to edit" and 
> each check box will turn on/off a tab so they can edit the contents of that 
> tab.
> 
> Thanks,
> Chad
> 
> 
> 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293974
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFGraph

2002-03-03 Thread Bruce H. Sorge

CFGraph does not store the graphs. There are templates that are installed
that lay out the basic framework for the graphs. That is the who purpose of
having a dynamic graphing engine, so that you do not have to create and
store the graphs. This is also why you have to have the Jrun server and the
Macromedia Generator installed. The files are java applets that use the
generator to render and display the charts.
- Original Message -
From: "Rudy Rustam" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, March 03, 2002 9:15 AM
Subject: CFGraph


> Hi guys,
>
> When using CFGraph to create a flash file. Any idea where is the flash
> file located?
>
> Thanks in advance
>
> 
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: JS Question

2002-02-04 Thread Bruce H. Sorge

There can be more than one form. This form is generated in a cfoutput. All
that I am doing is displaying X number of buttons for the user to click on
depending on what they want to delete.Each button is a separate form. IS
this the problem? That I have more than one form?
- Original Message -
From: "Dave Carabetta" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, February 04, 2002 10:08 PM
Subject: Re: JS Question


> Bruce,
>
> Complete shot in the dark, but could there be a limit to the length a form
> name can have in JS? Have you tried document.forms[0].submit() instead? By
> the way, forms[0] assumes that there is only one form on the page.
>
> Again, just a guess, but a troubleshooting technique nonetheless.
>
> Dave.
>
> - Original Message -
> From: "Bruce H. Sorge" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, February 04, 2002 11:00 PM
> Subject: OT: JS Question
>
>
> > Why would I be receiving the following error message:Error, object does
> > not support this property or method.
> >
> > The JS is this:
> > 
> ><!--
> > function confirmDelete()
> > {
> >  if(confirm("Are you sure you want to delete
> > <cfoutput>#qGetClientofClient.CofC_Name#</cfoutput>?"))
> >  {
> >   document.DeleteClientofClient.submit();
> >  }
> > }
> >//-->
> >
> >
> > What is weird is that I have a similar script that works just fine. Here
> > is the one that works:
> > 
> ><!--
> > function confirmDelete()
> > {
> >  if(confirm("Are you sure you want to delete
> > <cfoutput>#qGetClient.Client_Name#</cfoutput>?"))
> >  {
> >   document.DeleteForm.submit();
> >  }
> > }
> >//-->
> >
> >
> > TIA,
> > Bruce
> >
> >
> 
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: JS Question

2002-02-04 Thread Bruce H. Sorge

Why would I be receiving the following error message:Error, object does 
not support this property or method.

The JS is this:

   
   

What is weird is that I have a similar script that works just fine. Here 
is the one that works:

   
   

TIA,
Bruce

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: ColdFusion Server Slows down... then stops

2001-10-05 Thread Bruce H. Sorge

The only time that we have had this issue is when there was an issue with
the SQL Server. If the SQL Server is out of locks then the requests start to
stack up, then CF stops and starts again. When we added more locks to the
SQL server this issue pretty much went away. Not sure if this is your
situation, but may be a place to start.
- Original Message -
From: "Correa, Orlando (ITSC)" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, October 05, 2001 3:43 PM
Subject: ColdFusion Server Slows down... then stops


> Does anyone know if a solution/resolution to CF Server hanging as
> described/detailing in the following Allaire forum thread has been found?
>
>
http://forums.allaire.com/coldfusion/messageview.cfm?catid=3&threadid=184276
> &highlight_key=y&keyword1=unresponsive
>
>
> We are currently experiencing this problem as well.
>
> Any help is greatly appreciated!
>
> Thanks,
> Orlando Correa
> 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SQL Book

2001-10-05 Thread Bruce H. Sorge

Now if only I could find a book that would teach me how to spell.

(Huked on foniks werked four mi!)

- Original Message -
From: "Bruce H. Sorge" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, October 05, 2001 3:10 PM
Subject: Re: SQL Book


> Ben Forta has a really great handbook out called Tech Yourself SQL in 10
> minutes. He avoids the typical diatribe about the creation of the earth,
> discovery of fire, and the complete War and Peace edition of SQL, and gets
> right to the nuts and bolts of SQL. Another book that I find useful is SQL
> Queries for Mere Mortals by Hernandez/Viescas (Addison Wesley Publishers)
> - Original Message -
> From: "William H. Bowen" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, October 05, 2001 2:13 PM
> Subject: OT: SQL Book
>
>
> > I need a reference manual that contains basic to advanced SQL or T-SQL
> > syntax. Stored procedure how to's would be nice as well. Any thoughts?
> >
> > will
> > 
> >
> > William H. Bowen
> > Webmaster
> > ALSTOM's Energy Management and Markets Business
> >
> > [EMAIL PROTECTED]
> > http://www.esca.com/
> >
> > 425.739.3629 Voice
> > 425.466.7016 Cell
> > 425.739.3690 FAX
> >
> > 
> > CONFIDENTIALITY: This e-mail and any attachments are confidential
> > and may  be privileged. If  you are not a named recipient, please notify
> > the sender immediately and  do not disclose the contents to another
> > person, use it for any purpose or store or copy the information in any
> > medium.
> >
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SQL Book

2001-10-05 Thread Bruce H. Sorge

Ben Forta has a really great handbook out called Tech Yourself SQL in 10
minutes. He avoids the typical diatribe about the creation of the earth,
discovery of fire, and the complete War and Peace edition of SQL, and gets
right to the nuts and bolts of SQL. Another book that I find useful is SQL
Queries for Mere Mortals by Hernandez/Viescas (Addison Wesley Publishers)
- Original Message -
From: "William H. Bowen" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, October 05, 2001 2:13 PM
Subject: OT: SQL Book


> I need a reference manual that contains basic to advanced SQL or T-SQL
> syntax. Stored procedure how to's would be nice as well. Any thoughts?
>
> will
> 
>
> William H. Bowen
> Webmaster
> ALSTOM's Energy Management and Markets Business
>
> [EMAIL PROTECTED]
> http://www.esca.com/
>
> 425.739.3629 Voice
> 425.466.7016 Cell
> 425.739.3690 FAX
>
> 
> CONFIDENTIALITY: This e-mail and any attachments are confidential
> and may  be privileged. If  you are not a named recipient, please notify
> the sender immediately and  do not disclose the contents to another
> person, use it for any purpose or store or copy the information in any
> medium.
> 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is CF-Talk running slow

2001-10-05 Thread Bruce H. Sorge

This list has almost always been slow for posts. There is that rare occasion
where when I submit a post that it goes through almost as fast as the
Dallas/Fort Worth ColdFusion Users Group (www.dfwcfug.org). Of course, the
DFWCFUG is running on Infranets IIFramework application framework,  which is
pretty slick (and no, I do not work for Infrastructure, nor do I get any
kickbacks, I just call em like I see em).
- Original Message -
From: "Bruce, Rodney" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, October 05, 2001 2:06 PM
Subject: Is CF-Talk running slow


> Is it just my connection here?  Or is it taking awhile for the posts to go
> through?
> 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists