简体   繁体   中英

validate user control input value

How to validate user control textbox value on Parent page? I have the following code but it couldn't find the control. I have checked IE View Source(HTML) and this control renders as

ctl00_Management_Initiation_txtTitle_txtInput

How to get the value using JQuery? Please let me know.

User Control

<telerik:RadTextBox id="txtInput" runat="server" TextMode="MultiLine" LabelCssClass=""></telerik:RadTextBox>&nbsp;
 <asp:image id="ImgRequired1" ImageUrl="../../images/requiredfield.gif" AlternateText="Required Field" Runat="server" Visible=false></asp:image><br /> 

.aspx page

<script type="text/javascript">
       $(document).ready(function () {
            $("#<%=btnSave.ClientID %>").click(function () {
                var valid = true;
                var msg = "Please fill form:\n";
                if($("input[id*=txtTitle]").val().length == 0{ 
                    msg += "Title is Required!\n";
                    valid = false;
                }
         });
});
</script>  


<uc1:ControlTextBox ID="txtTitle" runat="server" MaxLength="200" ></uc1:ControlTextBox>
   <asp:Button ID="btnSave" name="btnSave" runat="server" Text="Save"  />
if($("#<%= txtTitle.TextInputClientID %>").val().length == 0) { 

There is serious lack of closing brackets, both "}" and ")" in your javascript.

Add property to your user control:

public string TextInputClientID { get { return txtInput.ClientID; } }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM