Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi
I have a .NET user control, I want to do some client side validations I am trying to use the following js script
What I have done so far is included the js script file in the master template but I cant call checkBoxValidate function from my usercontrol.
PLEASE HELP this is very urgent for me, atleast give me some ideas.
<!-- Begin function checkBoxValidate(cb) { for (j = 0; j < 4; j++) { if (document.aspnetForm.ckbox[3].checked == false) { document.getElementById('mc').style.display = "none"; } if (document.aspnetForm.ckbox[3].checked == true) { document.getElementById('mc').style.display = "block"; } if (eval("document.aspnetForm.ckbox[" + j + "].checked") == true) { document.aspnetForm.ckbox[j].checked = false; if (j == cb) { document.aspnetForm.ckbox[j].checked = true; } } } } // End -->
Kind Regards
Hi Praveen
Have you tried inserting it directly on the template where you call your form macro? Should work.
/Jan
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Javascript client validations
Hi
I have a .NET user control, I want to do some client side validations I am trying to use the following js script
What I have done so far is included the js script file in the master template but I cant call checkBoxValidate function from my usercontrol.
PLEASE HELP this is very urgent for me, atleast give me some ideas.
<!-- Begin
function checkBoxValidate(cb)
{
for (j = 0; j < 4; j++)
{
if (document.aspnetForm.ckbox[3].checked == false)
{
document.getElementById('mc').style.display = "none";
}
if (document.aspnetForm.ckbox[3].checked == true)
{
document.getElementById('mc').style.display = "block";
}
if (eval("document.aspnetForm.ckbox[" + j + "].checked") == true)
{
document.aspnetForm.ckbox[j].checked = false;
if (j == cb)
{
document.aspnetForm.ckbox[j].checked = true;
}
}
}
}
// End -->
Kind Regards
Hi Praveen
Have you tried inserting it directly on the template where you call your form macro? Should work.
/Jan
is working on a reply...