0
 <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <script type="text/javascript">

            function ValidatePhoneNumbers() {

                var phone = document.getElementById('txtPhone1');
                var mobile =document.getElementById('txtPhone2');
                alert(phone.value);
                if ((phone.value == null || phone.value == "") && (mobile.value == null || mobile.value == "")) {
                    alert('something');
                    return false;
                }
                else {
                    alert('something');
                    return true;
                }
           }

        </script>

<tr>
                                        <td>
                                         <label for="txtPhone1">
                                                Phone :</label>
                                        </td>
                                        <td>

                                            <telerik:RadNumericTextBox ID="txtPhone1" runat="server" Text='<%# Bind("Phone_One") %>' Type="Number" Skin="Windows7" CssClass="txt">
                                                     <numberformat allowrounding="false" keepnotroundedvalue="False" GroupSeparator=""></numberformat>
                                            </telerik:RadNumericTextBox>
                                            <asp:CustomValidator ID="rqfldPhone1" runat="server" ControlToValidate="txtPhone1"
                                                Display="Dynamic" ErrorMessage="*" ValidationGroup="Submit" ToolTip="Enter Phone Number"  ></asp:CustomValidator>
                                        </td>

 <telerik:RadButton ID="btnUpdate" runat="server" Text='<%# (Container is GridEditFormInsertItem) ? "Insert" : "Update" %>'
                                    CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>'
                                    Skin="Windows7" ValidationGroup="Submit">

当我将“OnClientClicked”添加到 RadButton 以在 javaScript 中调用 javaScript(“return ValidatePhoneNumbers”)它显示 NULL 为什么?有 2 个 rad 文本框 txtphone1 和 txtphone2 ,实际上我想验证这些文本框,如果任何一个都没有填写,否则我需要显示错误/警告消息。请帮助我

实际上“.value”没有在 javascript (document.GetelementById.value) 中显示

4

2 回答 2

2

当您使用 Telerik 控件时,用于查找控件和执行操作的 javascript 与我们使用普通的 html 和 javascript 不同:

要查找 radcombox:

$find("<%=RadComboBox1.ClientID %>");//for example

让我们解决您的问题:

var phone=$find("<%=txtPhone1.ClientID %>");
var mobile=$find("<%=txtPhone2.ClientID %>");
alert(phone.get_value());//use get_value() to get the value of radcombobox
if ((phone.get_value() == null || phone.get_value() == "") && (mobile.get_value() == null ||  mobile.get_value()== "")) {
        alert('something');
        eventArgs.set_cancel(true);
    }
    else {
        alert('something');
    }
}
于 2013-10-25T07:10:09.273 回答
2

OnClientClicked 事件将按名称运行带有 2 个参数的函数,这些参数类似于 .NET 事件处理程序(sender 和 eventArgs)使用的函数。Telerik 控件不会以与一般 HTML 对象相同的方式取消操作,因为后者return false;不会取消回发。相反,Telerik API 在 eventArgs 参数中提供了一个 set_cancel() 函数。

function ValidatePhoneNumbers(sender, eventArgs) {
    var phone = document.getElementById('<%= txtPhone1.ClientId %>'); // Corrected as per my comment
    var mobile =document.getElementById('<%= txtPhone2.ClientId %>'); // Corrected as per my comment
    alert(phone.value);
    if ((phone.value == null || phone.value == "") && (mobile.value == null || mobile.value == "")) {
        alert('something');
        eventArgs.set_cancel(true);
    }
    else {
        alert('something');
    }
}

你不需要设置OnClientClicked="return ValidatePhoneNumbers"我会推荐使用的OnClientClicking ="ValidatePhoneNumbers"(见:http ://www.telerik.com/help/aspnet-ajax/button-onclientclicking.html )

有关客户端事件处理程序的更多信息,请参阅:http ://demos.telerik.com/aspnet-ajax/menu/examples/programming/clientevents/defaultcs.aspx

验证器应在按下按钮时触发,如果未设置CausesValidation="True",则可能考虑使用 RequiredFieldValidator 以确保在回发之前填充它。

于 2013-10-23T15:14:20.173 回答