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: *

  • Users: kcyxa
  • Order by date
  1. kcyxa

    Output String with Preserved Formatting

    Does anyone know what I need to do in Struts to display a String with preserved layout (paragraphs, numbering, spaces, etc.)? The String itself is correct in terms of formatting, but the displayed text (using bean:write, for example) is displayed without any extra spaces, new line characters...
  2. kcyxa

    Dynamic Number of Groups of Radio Buttons

    I found the answer - use the "indexed" attribute: http://javaboutique.internet.com/tutorials/strutsform/index-6.html
  3. kcyxa

    Dynamic Number of Groups of Radio Buttons

    Hi, I need to display a page with multiple text sections (each one is in the database), with each section having an "I agree" and a "I disgree" radio button group. The problem is that the number of sections displayed depends on the type of the user. How can I adjust the action form to...
  4. kcyxa

    Panels and Text Boxes submit twice on 'Enter'?

    I got it. Had to add a couple of lines to my JS script: event.returnValue=false; event.cancel = true; function doClick(buttonName,e) { var key; if (window.event) key = window.event.keyCode; else key = e.which; if (key == 13) { var btn =...
  5. kcyxa

    Panels and Text Boxes submit twice on 'Enter'?

    Hi, Why is it that ASP.NET panels and text boxes submit twice on enter, while dropdown lists don't? I have a panel with contols mentioned above and a javascript attached to the panel, designed to execute an imagebutton event when a user presses 'Enter'. If a user presses enter while the focus...
  6. kcyxa

    Enter button in text box - executes but nothing happens

    Hi, I have a form that has several controls in a panel including several text boxes. The form is used to perform searches and then display results on the same page. In order to catch the Enter key being pressed, I've added a javascript onKeyDown() event to the panel. This event then executes...

Part and Inventory Search

Back
Top