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 SkipVought 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. xsw1971

    Validate form entry against ValueList variable

    Yes the list is viewable so this is obviously not the way to go with secure fields. This is an intranet app and this particular field does not need to be hidden. Heres's the documentation on toScript...
  2. xsw1971

    Validate form entry against ValueList variable

    Thanks imstillatwork for the feedback. Just before you responded I figured out what I needed to do using JS! I just had to use regular expression matching to pull the value out of the "list". Even though the "list" has over 5000 "elements" in it, this executes instantly. First I created my...
  3. xsw1971

    Validate form entry against ValueList variable

    Before a user submits a form, I would like to validate one of their entries against a ValueList variable that was created when the page was opened. I want to prevent a user from entering a duplicate asset number and right now the form is submitted and the verification is done on the server...
  4. xsw1971

    Actionscript to display HTML

    I am using a flash form in a ColdFusion application and am creating a variable using actionscript in order to display HTML in the form. I want to display form items as text instead of form items if the user doesn't have update rights. I found some code in a sample address book application but...
  5. xsw1971

    Align flash form on page

    OK, I'm a moron. A div works great - I should have tried that first. Thanks!!
  6. xsw1971

    Align flash form on page

    I have a tabbed flash form that is 700px wide. It automatically aligns to the left of the page. Is there a way to take the entire form and center align it? Thanks!
  7. xsw1971

    Exit automatically

    Thank to all of you for all the replies! We implemented exec and it works great. We'll look into some of the other tips you guys provided like trap exit 2 15. Thanks a bunch!
  8. xsw1971

    Exit automatically

    We have a ksh script that allows a user to telnet into a server and run a cycle job. When they log on, the script runs automatically, giving the user a choice of running the job or exiting. When they select exit, the script exits leaving them in the shell so they can start perusing the server...
  9. xsw1971

    Catch error and reprocess form

    Thanks for the suggestions! GUJUm0deL, your method doesn't work for me because I have a whole bunch of form fields and if the user is sent to the processing file without having certain hidden fields defined they are kicked back to the form. TruthInSatire, your solution worked perfectly and was...
  10. xsw1971

    Catch error and reprocess form

    I am adding cftry/cfcatch code to my application and I was wondering how to tell a form processing page to reload itself. I have a query that gets max(id)+1 from a table and uses that value on an insert statement. Today I had 2 users submit their forms at the exact same moment (first time...
  11. xsw1971

    Prompt() require answer

    Actually they can't (at least I can't) unless they kill the process. But that defeats the whole process anyway because they lose all the changes they made on the form - it's a project management tool, and they wouldn't want to have to re-do everything.
  12. xsw1971

    Prompt() require answer

    But that's exactly what I want it to do. I don't want the user to be able to click Cancel - they HAVE to give a response, and since there's no way of removing that cancel button (that I'm aware of) I have to go this way. Here is what I ended up doing, and I used all the alerts so I could see...
  13. xsw1971

    Prompt() require answer

    Thanks for fast reply, cLFlaVA! It works great, except for one thing: the user can get around it now by clicking Cancel. Here's the code, I'm sure there's a better way of doing this: function cancel_reason() { var re = /\S+/; var reason = prompt("Please provide a reason for canceling the...
  14. xsw1971

    Prompt() require answer

    I have a prompt that requires an answer from the user. However some users have figured out that typing a space or two will get them past the prompt. How do I check for non-space characters? I don't simply want to say if(x == ' ') because they might have more than 1 space. Thanks!
  15. xsw1971

    Fixed column issue with Firefox

    Thank you for your quick response! I will look at that URL and see if I can apply it to my table. Thanks!
  16. xsw1971

    Fixed column issue with Firefox

    I have data that is output in a table with both horizonal and vertical scroll bars. The table also includes a fixed row and a fixed column. This works fine in IE and Netscape, but not Firefox. I am just learning about CSS so I'm not really sure how to troubleshoot this. CSS: <style...
  17. xsw1971

    CF5 applets and Firefox

    Has no one else experienced this?!?
  18. xsw1971

    CF5 applets and Firefox

    Our intranet site was built (using CF5) to meet IE specifications as that was company standard. We have some pages that use cfgrid and everything works fine in IE. We were recently purchased by a company whose standards are anything but Microsoft, so I am working on making the site...
  19. xsw1971

    Java Plugin Viewer prompt problem

    Forgot to include that I'm using CR8.5 professional and CE8 standard.
  20. xsw1971

    Java Plugin Viewer prompt problem

    I have a prompt which has a rather lengthy prompting text. When viewing the report using the DHTML viewer the text block wraps within the size of the window. We want all of our reports to open with the java plug-in however and when viewing the report using the JAVA_PLUGIN viewer, the text runs...

Part and Inventory Search

Back
Top