Community
Participate
Working Groups
Provide a 'validation pattern' for all of the primitives in the Tigerstripe profile so that validation can be done on entry. The validation expressions should be editable on the profile PrimitiveTypes form. e.g. by using REGEX String : .* int : -?[0-9]* unsignedInt : -?[0-9]* Note the validation doesn't have to be 100%, as long as it provides a reasonable level of validation.
*** Bug 347576 has been marked as a duplicate of this bug. ***
Created attachment 198292 [details] Screenshot Please see attached screenshot for how this should be implemented.
Мalidation implemented.
Regular expressions based validation implemented.
This looks really good. Thank you! The only issue is that the char primitive type doesn't have any validation associated with it. Hence users can type in any default value for a char type and get away with it. I expected it to have the following validation RE: .{1}
Validation expression for primitive type 'char' added.
Looks good! Thank you!