don't add duplicated validation rules
This commit is contained in:
@@ -679,7 +679,8 @@ public class RadValidationProviderEx : Component, ISupportInitialize, IExtenderP
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
radValidationRule.AddControl(control);
|
radValidationRule.AddControl(control);
|
||||||
validationRules.Add(rule);
|
if (!validationRules.Contains(rule))
|
||||||
|
validationRules.Add(rule);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>2.10.3</Version>
|
<Version>2.10.4</Version>
|
||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user