Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jt8941

    DTS Query Depending on External File Contents

    Has this been resolved, I have the same question?
  2. jt8941

    Using 2 different DataSources

    I need to export data from connection 1 to connection 2, however the where clause needs to be constructed from data in a table in connection 2? How is the best way to do this, text file?
  3. jt8941

    Format Fields when exporting to excel

    That actually puts it in the format of d-mmm-yy, not the format I specified in the dateFormat? Does excel only allow certain date formats?
  4. jt8941

    Format Fields when exporting to excel

    I have a date field which is a string of "Jan 03" when I try to export this to excel it converts it to a date and outputs this in the format of "3-Jan". Is there a way to control this in cold fusion besides using quotes around it?
  5. jt8941

    Passing a parm to a method via URL

    I am trying to call a method via url with ...page.cfc?method=foo. However the method foo has a required parameter of bar, how do I pass that via the URL. Thanks
  6. jt8941

    Onclick of a multiselect

    I get it but I need to know which value they just selected to validate it, and remember this is a multi-select list. For example lets say the user selects Painting 1 first. After selecting painting 1 the user can not select painting 3. Now if they select painting three, I need to return a...
  7. jt8941

    Onclick of a multiselect

    However, I need to keep track of which value they changed to validate that it was an correct selection. Is there anyway to pass in that value they selected to my function?
  8. jt8941

    Onclick of a multiselect

    I am trying to invoke an edit on a multiselect list, however, I would like to do it when they click on each item. I have two questions 1. So far I haven't been able to get the onClick event to work in each <option> tag. Is this possible? 2. I can get this done with the onClick in the...
  9. jt8941

    Change cursor within an area tag

    That's it, thanks
  10. jt8941

    Change cursor within an area tag

    That doesn't work inside of the area tag. Here is the code: <map name="help"> <area shape="rect" coords="574,18,643,34" onClick="javascript:ocpHelp()"> <area shape="rect" coords="574,48,643,64" href="http://xxx.xxx.com/logoff.cfm"> </map> I have even tried setting the cursor the...
  11. jt8941

    Change cursor within an area tag

    I am trying to change the cursor when I hover over an item. With an href it does this automatically, however I am using javascript inside of my area tag to open the link in a new window. Any thoughts from anyone?
  12. jt8941

    Passing a query to a cffunction via a cfform

    I actually did it by using the ArrayToList() function before passing it, and then when I get it using the listToArray function to process it using a delimiter (the default was a comma which I use in the array... I thought about session variables as well but I don't want it to stick around if...
  13. jt8941

    Passing a query to a cffunction via a cfform

    All- I think I read you can't pass complex obects(queries), to a function in a component without a <cfinvoke>. i.e <cfform method=&quot;post&quot; action=&quot;myComponent.cfc> <input type=&quot;hidden&quot; name=&quot;method&quot; value=&quot;myMethod&quot;> <input type=&quot;hidden&quot...
  14. jt8941

    Validation with components

    I currently have a page in an app where I need to show a form which has multiple rows which can be updated and multiple columns in the row which can be updated as well. I have a method &quot;display&quot; which shows the page, and the display component invokes the &quot;showForm&quot; method...
  15. jt8941

    Easy Question

    Is there a way to not have the application.cfm file run when you visit a .cfm page?

Part and Inventory Search

Back
Top