Hi @paramagurukarthikeyan thanks for answering, I've made changes on the min and max result per page part of the code, I've changed the maximum value to 500 and the error message that will be shown when the value entered exceed 500.
{
name: 'display.prefs.statistics.count',
label: _('Rows Per Page').t(),
defaultValue: '10',
groupOptions: {
controlClass: 'controls-block'
},
control: TextControl,
validation: {
pattern: 'digits',
min: 1,
max: 500,
msg: _('Rows Per Page must be a positive number no larger than 500.').t(),
required: true
}
}
... View more