Connecting Tech Pros Worldwide Forums | Help | Site Map

Disable/enable Textbox Buttons

Newbie
 
Join Date: Jan 2007
Posts: 9
#1: Jan 17 '07
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

shweta123's Avatar
Expert
 
Join Date: Nov 2006
Location: India,Pune
Posts: 686
#2: Jan 17 '07

re: Disable/enable Textbox Buttons


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.
Newbie
 
Join Date: Jan 2007
Posts: 9
#3: Jan 17 '07

re: Disable/enable Textbox Buttons


Quote:

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
shweta123's Avatar
Expert
 
Join Date: Nov 2006
Location: India,Pune
Posts: 686
#4: Jan 18 '07

re: Disable/enable Textbox Buttons


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
Newbie
 
Join Date: Jan 2007
Posts: 9
#5: Jan 19 '07

re: Disable/enable Textbox Buttons


Quote:

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.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
Member
 
Join Date: Sep 2006
Posts: 73
#6: Sep 24 '08

re: Disable/enable Textbox Buttons


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?
Reply