Disable/enable Textbox Buttons

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • metalwing12
    New Member
    • Jan 2007
    • 11

    Disable/enable Textbox Buttons

    Hi guys
    can someone kindly help me about my code it seems incomplete or i just can make it right .I try using the disabled property of the textbox yes it workss, it disable it but when i set it to false like disabled="false " it does not enable the textbox.This is my code



    <p><input type="text" name="txtbox1" size="20" disabled="true" >
    <input type="button" value="Click" name="B3" disabled="true" > Operator</p>
    <p><input type="text" name="txtbox2" size="20"disabl ed="false">
    <input type="button" value="Click" name="B4" disabled="false "> Supervisor</p>


    thanks and regards
    metalwing
  • shweta123
    Recognized Expert Contributor
    • Nov 2006
    • 692

    #2
    Hi,

    Don't give any value for Disabled property.e.g. <Input type="Text" Disabled>
    If you want to make the Textbox Enabled just dont give anything there.

    Comment

    • metalwing12
      New Member
      • Jan 2007
      • 11

      #3
      Originally posted by shweta123
      Hi,

      Don't give any value for Disabled property.e.g. <Input type="Text" Disabled>
      If you want to make the Textbox Enabled just dont give anything there.

      hi shweta123

      yahh i already did that what i want to do is that when i click the button in my asp it will disable the previous active button and textboxes..But it seems that whatever propertyi work with wether it is disabled or enable regardless of value(true or false) it seems not accepting the value..tnkss hope you can help me..

      metalwing

      Comment

      • shweta123
        Recognized Expert Contributor
        • Nov 2006
        • 692

        #4
        Hi,

        I am not getting where exactly its going wrong .You can try these lines
        be4 making textbox or any control enabled or disabled.

        for(i=0;i<form. elements.length ;i++)
        {
        if(form.element s[i].disabled="fals e")
        form.elements[i].disabled="true ";
        }

        Shweta

        Comment

        • metalwing12
          New Member
          • Jan 2007
          • 11

          #5
          Originally posted by shweta123
          Hi,

          I am not getting where exactly its going wrong .You can try these lines
          be4 making textbox or any control enabled or disabled.

          for(i=0;i<form. elements.length ;i++)
          {
          if(form.element s[i].disabled="fals e")
          form.elements[i].disabled="true ";
          }

          Shweta
          hi

          well what im trying to do is that i have 4 textboxes and buttons
          the first textboxes and buttons is enable and the rest disabled.when i click the first button it will enable the second textbox and button while disabling the first textbox and button.
          hope you can help me..

          thanks and regards
          metalwing

          Comment

          • MATTXtwo
            New Member
            • Sep 2006
            • 83

            #6
            how about vbscript to enabled and disabled textbox outside of textbox control
            like<% if session("Pwd")= "" then textbox1.disabl ed=true end if%>
            and also assign value to textbox outside of textbox control?

            Comment

            Working...