Disable requiredfieldvalidator with javascript

若如初见. 提交于 2019-12-11 03:47:23

问题


Firstly I have seen the other threads on this topic and I just want something cleared up that I am stuck on.

I have this textbox control and required field validator:

<td class="style1">
    <asp:TextBox runat="server" ID="txtFirstname"></asp:TextBox>
</td>
<td>
    <asp:RequiredFieldValidator ID="rfvFirstname" runat="server"   ControlToValidate="txtFirstname" >*</asp:RequiredFieldValidator>
</td>

And this javascript code

<script type="text/javascript">
    function chkValidators() {
        alert("enter function chkValidators");
        validatorEnable(document.getElementById('<%rfvFirstname%>'), false);
    }

This is giving me a compilation error:

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: CS1002: ; expected

Source Error:

Line 158:            #line default
Line 159:            #line hidden
Line 160:            @__w.Write("\'), false);\r\n         }\r\n   </script>\r\n");
Line 161:        }
Line 162:        

Anyone know how to fix this?

Nick


回答1:


Have you tried using..

    ValidatorEnable(document.getElementById('<%= rfvFirstname.ClientID %>'), false);



回答2:


We can able to do with jquery like this

$("#ObjectID").removeAttr("data-val-required");



回答3:


Here is my script to disable validator and clear the error text upon Checkbox onclick event.

<script language="javascript" type="text/javascript">

       function chktextmiddlenameEnableDisable(obj) {

             document.getElementById('<%=txtMiddleName.ClientID %>').disabled = obj;
             if (obj == true) {
                     document.getElementById('<%=RequiredFieldValidator2.ClientID %>').innerHTML = '';
                     } else {
                              document.getElementById('<%=RequiredFieldValidator2.ClientID %>').innerHTML = 'Please Enter Middle Name';
                     }
              } 


 </script>

On my check box onclick event I called onclick="chktextmiddlenameEnableDisable(this.checked);"




回答4:


This works for me when the ValidatorEnable() did not.

  document.getElementById("<%=rfvFirstname.ClientID %>").enabled = false;


来源:https://stackoverflow.com/questions/12493285/disable-requiredfieldvalidator-with-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!