Hi, I'd like to add line breaks in my data for a Grid I'm using. No method I have found works. Here is my data file, and where I'd like line breaks to appear. How do I achieve this? I've tried so many methods I've found on the internet, but no luck yet.
export let dateValidationData: Object[] = [
{
Type: 'Mandatory (via REGEX)',
ValidationCriteria: '.{1,}',
ErrorMessage: 'You must enter a value'
},
{
Type: 'Format',
ValidationCriteria: 'The entered date must always fit the format of the configured input mask: dd/mm/yyyy or <br />mm/dd/yyyy or<br />yyyy-mm-dd ',
ErrorMessage: 'You must enter a valid date in the correct format: [configured input mask]'
},
{
Type: 'Range',
ValidationCriteria: 'The entered date must fall between configured min/max range',
ErrorMessage: 'The date you have entered is either too far in the past or too far in the future'
}
];