Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i have problems with disabling and enabling controls..

1.i have page in that i have some user controls directly on the page..
2.i have a wizard control on the same page as well..each wizard step contains a user control.
i have to make the wizard steps to be readonly..user can navigate through next and privious steps..but not be able to edit..

i have used one javascript function as below..but the problem is that it is disabling all the controls on the page..i m not able to navigate to next or previous steps..

function DisableControls() {
$("form :input").attr("disabled", "disabled");
};


plz help me...
one more thing i need to make only wizard control as readonly not other user controls that are directly placed on page

thanks in advance...
Posted

Then just enable those 2 controls, after that. Or change selector.
Use
HTML
control.ClientId

To obtain control id on the client side and then use it Jquery selector.
But that is not elegant since you mixing server tags and javascript.
Cant you acomplish that trough server events?
 
Share this answer
 
C#
function DisableControls() {
$("form :input").attr("disabled", "disabled");
};



Here replace -> $("form:input") with $("#Id_of_Input")

like
$("#Id_of_Input").attr("disabled", "disabled");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900