Exemplo n.º 1
0
        /// public string DefaultErrorMessage { get; set; }

        public SitecoreRequiredField(string fieldName)
        {
            // The path is the GUID of the item that holds the validation messages
            this.path = ValidationErrorMsg.GetPath();

            // The fieldname is the name of the Sitecore field on the "path" item that relates
            // to this property
            this.fieldName = fieldName;
        }
Exemplo n.º 2
0
 public SitecoreRegEx(string fieldName, string RegExpattern)
 {
     this.fieldName = fieldName;
     this.path      = ValidationErrorMsg.GetPath();
     this.pattern   = RegExpattern;
 }