Is it possible to change the text that appears when deleting a row. I want different text than the default "Are you sure delete this row?"
You can modify it in the localization props. For example
localization={{
body: {
editRow: { deleteText: 'Customized Delete Message' }
}
}}
Check the documentation for more localization props.
Works like a charm. Thank you!
Can we have this custom message with the row data I want to delete?
Most helpful comment
You can modify it in the localization props. For example
localization={{ body: { editRow: { deleteText: 'Customized Delete Message' } } }}Check the documentation for more localization props.