disable auto update
This commit is contained in:
@@ -5,7 +5,6 @@ using Telerik.WinControls.Data;
|
|||||||
|
|
||||||
namespace Pilz.UI.Telerik.Controls.RadValidationProvider;
|
namespace Pilz.UI.Telerik.Controls.RadValidationProvider;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// RadValidationRule provides a validation logic which compares RadControl's Property with Rule's Value.
|
/// RadValidationRule provides a validation logic which compares RadControl's Property with Rule's Value.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -15,7 +14,7 @@ public class RadValidationRuleEx : FilterDescriptor, IRadValidationRuleEx
|
|||||||
private List<Control> controls = [];
|
private List<Control> controls = [];
|
||||||
private string toolTipText = string.Empty;
|
private string toolTipText = string.Empty;
|
||||||
private bool caseSensitive = false;
|
private bool caseSensitive = false;
|
||||||
private bool autoToolTip = true;
|
private bool autoToolTip = false;
|
||||||
private string toolTipTitle = "Validation Failed";
|
private string toolTipTitle = "Validation Failed";
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@@ -118,7 +117,7 @@ public class RadValidationRuleEx : FilterDescriptor, IRadValidationRuleEx
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enable or Disable the ToolTip when validation fails.
|
/// Enable or Disable the ToolTip when validation fails.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DefaultValue(true)]
|
[DefaultValue(false)]
|
||||||
public bool AutoToolTip
|
public bool AutoToolTip
|
||||||
{
|
{
|
||||||
get { return this.autoToolTip; }
|
get { return this.autoToolTip; }
|
||||||
|
|||||||
Reference in New Issue
Block a user