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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by simasi

  1. simasi

    One checkbox at a time

    Thanks vacunita, It works. Appreciate it!
  2. simasi

    One checkbox at a time

    > Are there other checkboxes, not involved in this enabling/disabling thing, on the same form ? NO
  3. simasi

    One checkbox at a time

    >Why not use radio buttons? That way you will automatically get the one-checkbox-allowed behavior. Weird-ly requirement says it should be check box only ;P
  4. simasi

    One checkbox at a time

    >Why not use radio buttons? That way you will automatically get the one-checkbox-allowed behavior. Yeah ;P
  5. simasi

    One checkbox at a time

    No they all have different properties. That is why..
  6. simasi

    One checkbox at a time

    I have 5 check box in my HTML (JSP). Out of those 5, at a time only 1 could be selected. So if I click on one check box, other 4 should be disabled. This is true for all the 5 check boxes. var A= document.getElementById("A"); var B= document.getElementById("B"); var C=...
  7. simasi

    Struts 1 Form data in tabs

    I am using struts 1. I have Adobe SPRY tabs in my JSP. There are two separate set of fields/ data in each tab. So suppose someone changes fields in Tab 2 only and save the JSP, I do not want to save the tab 1 fields also because those fields are not changed. I was wondering if there is any way...
  8. simasi

    Java variables calculation on change (Excel replica)

    sure in few minutes. thanks!
  9. simasi

    Java variables calculation on change (Excel replica)

    May be caching issue? stale data or something?
  10. simasi

    Java variables calculation on change (Excel replica)

    Thanks ..but result still the same :( new values are not coming to the script.
  11. simasi

    Java variables calculation on change (Excel replica)

    Burt since this is autgenerated from JSP, I cannot change it manually, is there any thing I can do in jsp? in JSP: <html:text onkeyup="adjustCalcs()" property="A" /> getc onverted to HTML: <input type="text" name="A" tabindex="2" value="25" onblur="adjustCalcs()">
  12. simasi

    Java variables calculation on change (Excel replica)

    <table bgcolor="#FFFFCC" id="tblGrid" align="left" border="1px" width="250px" style="position:relative"> <thead> <tr bgcolor="#ababab"> <th bgcolor="#ababab" align="center" valign="middle" colspan="2" rowspan="2"> A Location Costs...
  13. simasi

    Java variables calculation on change (Excel replica)

    onblur did not work? :(
  14. simasi

    Java variables calculation on change (Excel replica)

    :) I am not using any HTML. The code I sent you is all I am using in JSP which in turns get converted to HTML usually. <html> <table> <tr> <td> <html:text onkeyup="adjustCalcs()" property="A" /> </td> </tr> </table> </html> ....like this.

Part and Inventory Search

Back
Top