Hi,
I’m trying to figure out how to edit repeater field’s default “Maximum rows reached (x rows)” text which is displayed when clicking “add row” after maximum rows have been reached.
I have successfully made the maximum rows value dynamic by using set() method:
repeater_field.set('max', 5);
But now I’m trying to figure out how can I edit the default text that is triggered after reaching the max rows. Do I need to create my own row count validation and trigger showNotice() or is there a simpler way to edit the default text?