472,139 Members | 1,688 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,139 software developers and data experts.

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"disabled="false">
<input type="button" value="Click" name="B4" disabled="false"> Supervisor</p>


thanks and regards
metalwing
Jan 17 '07 #1
5 13937
shweta123
692 Expert 512MB
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.
Jan 17 '07 #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.

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
Jan 17 '07 #3
shweta123
692 Expert 512MB
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.elements[i].disabled="false")
form.elements[i].disabled="true";
}

Shweta
Jan 18 '07 #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.elements[i].disabled="false")
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
Jan 19 '07 #5
how about vbscript to enabled and disabled textbox outside of textbox control
like<% if session("Pwd")="" then textbox1.disabled=true end if%>
and also assign value to textbox outside of textbox control?
Sep 24 '08 #6

Post your reply

Sign in to post your reply or Sign up for a free account.

Similar topics

reply views Thread by Alexander Vasilevsky | last post: by
10 posts views Thread by viki1967 | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.