JavaScripts to Disable controls on Editform.aspx
for(var i = 0; i < document.aspnetForm.elements.length; i++)
if ((document.aspnetForm.elements[i].title == "Recommendation")) // give the title of the control that you want to disable
{
document.aspnetForm.elements[i].disabled =
true;
}
Monday, April 27, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment