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 strongm 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: jagprg
  • Content: Threads
  • Order by date
  1. jagprg

    validate struts dropdown list

    Hi, I have a Struts custom tag (a drop down list) about 5 items in the list with the first just being blank. I want to validate this using javascript but I dont know how to read/get its value in javascript. any ideas ? <TCS:doctypes noneallowed="true" /> the above is the tag with...
  2. jagprg

    5 checkboxes only one should be checked..

    Hi, I have five checkboxes out of which only one should be checked. I did the following and it works but very lengthy and redundant. if (tornado.checked == true) { traffic.checked = false; cable.checked = false; holiday.checked = false; outdoor.checked =...
  3. jagprg

    checkbox check using javascript..

    hi, I am using <html:checkbox....tag for my checkbox, I get the value of it true or false from a Object dynamically..shown below <html:checkbox property="trafficSignals" disabled="false" value='<%= home.getTrafficSignals() ? "true" : "false" %>'/>&nbsp;&nbsp;Traffic Signals<br/> I am able...
  4. jagprg

    populate textbox onload

    Hi, I have text box in a form which I want populate when the form loads. I am using <html:text> tags for text boxes, I tried the following but dosent seem to work. any ideas thanks in advance. <script language="JavaScript"> setCode() { if(this.form.inputSIC.value == "")...
  5. jagprg

    jsp/checkbox problem

    HI, I have a jsp page with 2-3 check boxes, I get the object from the database which returns a boolean, How do I use that to set the checkbox <html:checkbox property="Supplies" value='<%= obj.getUnmeteredTO().getSupplies() ? "true" : "false" %>'/> -- Supplies<br/> I am able to set the...
  6. jagprg

    jsp checkbox

    HI, I have a jsp page with 2-3 check boxes, I get the object from the database which returns a boolean, How do I use that to set the checkbox <html:checkbox property="Supplies" value='<%= obj.getUnmeteredTO().getSupplies() ? "true" : "false" %>'/> -- Supplies<br/> I am able to set the...

Part and Inventory Search

Back
Top