Hi,
I am using sharepoint Offic Designer 2007, to validate a checkbox(terms and conditions) thru javacsript.
Details:
I have created a custom list and in the custom there is a field called terms and conditions. I have inserted the custom list in new .aspx page. I have changed the sharepoint checkbox to asp checkbox.
And I am trying to validate it through client validation function by aspx custom validator. My code looks like
<script type= "text/javascript" language="javascript">
function TermsValidate(sender, args)
{ args.Isvalid=documnent.getelementById("ff2_1").checked); }
The validation looks like it triggering but object required error comes up.
Does any one faced or come across this problem?
Thanks