gpt4 book ai didi

asp.net - 禁用验证器但验证器标注仍然显示并导致验证

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:37:49 25 4
gpt4 key购买 nike

我正在尝试验证是否在中继器的产品数量文本框中输入了某个产品增量。问题是每个产品的增量都不同,所以我需要它作为每次调用的变量来验证它(我认为你不能用自定义验证器来做),我需要它在客户端有 ValidatorCalloutExtender .我想出的最佳解决方案是触发一个 RegEx 验证器,该验证器将通过我自己的 javascript 评估 false(另一个验证器负责确保其有效数字)。问题是,使用 ValidatorCalloutExtender,当我禁用验证器时,它仍然将其标记为无效(文本框闪烁白色然后再次变为黄色(意味着它无效),即使我放置了 JavaScript 警报并且我知道验证器被禁用。任何人对这里发生的事情有什么想法吗?这是代码。谢谢!

PS:没有 validatorCalloutExtender 一切正常,但我真的需要 Callout Extender!

验证器:

<asp:RegularExpressionValidator ID="ProductIncrementValidator" runat="server"
ControlToValidate="ProductQtyTxt"
ErrorMessage="Please enter a valid increment"
ValidationExpression="^triggerthisvalidation$"
Enabled="false"
Display="Dynamic"
SetFocusOnError="true"
ValidationGroup="productValidation">
</asp:RegularExpressionValidator>

<ajax:ValidatorCalloutExtender ID="ProductIncrementVE" runat="server"
TargetControlID="ProductIncrementValidator"
HighlightCssClass="validator"
WarningIconImageUrl="~/img/blank.gif">
</ajax:ValidatorCalloutExtender>

当对产品进行数据绑定(bind)时:

Dim productQtyTxt As TextBox
productQtyTxt = CType(e.Item.FindControl("ProductQtyTxt"), TextBox)

Dim incrementValidator As RegularExpressionValidator
incrementValidator = CType(e.Item.FindControl("ProductIncrementValidator"), RegularExpressionValidator)
incrementValidator.ErrorMessage = "Please enter an increment of " & product.OrderIncrement.ToString()


' Add item qty increment check
productQtyTxt.Attributes.Add("onChange", "javascript:checkIncrement('" _
& productQtyTxt.ClientID & "', " _
& product.OrderIncrement & ", '" _
& incrementValidator.ClientID & "')")

Javascript:

    function checkIncrement(textboxID, incrementQty, validatorID) {
var textbox = $get(textboxID);
var incrementValidator = $get(validatorID);
var qtyEntered = textbox.value;

if ((qtyEntered % incrementQty) != 0) {
ValidatorEnable(incrementValidator, true);
alert("not valid");
return;
}
else {
ValidatorEnable(incrementValidator, false);
alert("valid");
return;
}
}

最佳答案

1.为 ValidatorCalloutExtender 设置 CSS 类:


<style id = "style1" type="text/css">
.CustomValidator
{
position: relative;
margin-left: -80px;
margin-top: 8px;
display: inherit;
}
</style>


<ajax:ValidatorCalloutExtender ID="ProductIncrementVE" runat="server"
TargetControlID="ProductIncrementValidator"
HighlightCssClass="validator"
WarningIconImageUrl="~/img/blank.gif"
CssClass="CustomValidator">
</ajax:ValidatorCalloutExtender>

2。在需要时使用 JavaScript 更改此 CSS 类。设置显示 = 无:



function alterDisplay(type) {
var styleSheet, cssRule;
if (document.styleSheets) {
styleSheet = document.styleSheets[index1];
if (styleSheet) {
if (styleSheet.cssRules)
cssRule = styleSheet.cssRules[index2]; // Firefox
else if (styleSheet.rules)
cssRule = styleSheet.rules[index2]; // IE
if (cssRule) {
cssRule.style.display = type;
}

}
}
}

注意: index1 和 index2 可能与页面不同,这取决于您的声明。您可以使用 IE 调试器找到我们正确的索引。

关于asp.net - 禁用验证器但验证器标注仍然显示并导致验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1050054/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com