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 Chris Miller 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. BLarche

    Simple Picture Album/Viewer

    I want to generate a JavaScript picture viewer that will allow the user to click to next or previous icon and show the next or previous picture in place of the default picture. You can get a general idea of what I am referring to here: http://www.cnn.com/2007/POLITICS/02/08/cia.leak/index.html...
  2. BLarche

    Disabling Multiple Check Boxes

    There is a problem with that though. Once a selection has been made with a radio button, you can't uncheck it to enable the other form elements. So once you have made your selection for say "choice1", once you disable the choice1 fields, you cannot re-enable them. With a checkbox you can...
  3. BLarche

    Disabling Multiple Check Boxes

    One more comment. If the check box is unchecked, I want ALL disabled checkboxes to be enabled once again, that includes ALL in the corresponding column and those in the other two or one columns.
  4. BLarche

    Disabling Multiple Check Boxes

    One more thing to add... the check boxes will be created on the fly. The names will always change, but the suffix will always be "_1", "_2", and "_3". The names of the checkboxes will be something such as: Column 1: BSX_1 CAT_1 JOY_1 PFE_1 Column 2: BSX_2 CAT_2 JOY_2 PFE_2 Column 3: BSX_3...
  5. BLarche

    Disabling Multiple Check Boxes

    I am trying to create an application that allows me to disable check boxes based on a users selection of other check boxes. I have 7 different choices for a check box, and those 7 different choices can be ranked 1 - 3 ONLY once. So, for instance, of the 7 choices, you can only choose the...
  6. BLarche

    Closing Window with Frames

    How do I close my popup window that contains frames? window.close(); does not work.
  7. BLarche

    Radio Button selects DropDown Menu in New Window

    Nevermind. I forgot to change the onclick properties. I also added window.close();, but where should I add it? The window is not closing.
  8. BLarche

    Radio Button selects DropDown Menu in New Window

    The code you pasted works on my PC offline, but it does not work on the actual website. What form properties do I need to include? I have the form named, but where do I need to submit the forms to? You can check out the website at the following URL...
  9. BLarche

    Radio Button selects DropDown Menu in New Window

    In that last sample of code, where would I place each of those pieces of code? In the frame with the radio buttons or the frame with the submit button?
  10. BLarche

    Radio Button selects DropDown Menu in New Window

    Below is the code that I am currently using: <script type="text/javascript"> <!-- function setValue() { var selectedValue = ""; var radios = document.forms[0].elements['radios']; if (!radios) { alert("No radio buttons found!"); return; } if (!radios.length)...
  11. BLarche

    Radio Button selects DropDown Menu in New Window

    I have a window that is popped up when the user clicks "Select Image." Inside of that window contains 2 frames. One of the frames has radio buttons and the other frame has the submit button for those radio buttons. When the user selects which radio button and clicks submit, I want the value...
  12. BLarche

    Multiple Forms in Frameset

    Yeah, which page exactly am I submitting this to though? A page in the frameset? Or the original page?
  13. BLarche

    Multiple Forms in Frameset

    Hmm, still not working. Where if any, do I add the process and action properties? Is that the reason for this not working?
  14. BLarche

    Multiple Forms in Frameset

    Yes, but when are we calling the function "setValue();"? I need this function to be called when you submit the button, correct? Currently when I press the submit button, it does nothing. If you goto the website I posted above and view the code, you will see waht is going on. Or I can paste...
  15. BLarche

    Multiple Forms in Frameset

    I need to incorporate it into the submit button. The javascript is in the Top frameset with the function.
  16. BLarche

    Multiple Forms in Frameset

    Okay. I also have a function called setValue(); that I need to be executed when the form is submitted. How do I add this value as well?
  17. BLarche

    Multiple Forms in Frameset

    In reply to my original post. If you guys goto the following website, you will see the problem I am having. http://www.outdoormarketing.org/products/viewProduct.asp?category=Awards&itemNum=acrlicplq Click on "Select Image" on the right hand side of the page. Thanks for your help.
  18. BLarche

    Multiple Forms in Frameset

    I asked this question earlier, but here is my problem. I have a popup window with a frameset. In one frame I have radio buttons and in the other frame, I have the submit button for those radio buttons. How do I link these two forms together? I have an onsubmit button that passes the values...
  19. BLarche

    Multiple Forms in Frames Submitted as One

    I have a window, and within this window, I have a frameset. One of the pages in the framset has a form with radio buttons. The other page in the framset has the submit button for these radio buttons. How do I link these two forms together to be submitted as one? Is this even possible?
  20. BLarche

    Frames and Forms

    In response to my original post, I will paste the code that I am using as well as the website that I am trying to incorporate this into: Website (On the right, click "Select Image"): http://www.outdoormarketing.org/products/viewProduct.asp?category=Awards&itemNum=acrlicplq Code: <script...

Part and Inventory Search

Back
Top