How to change reload button label in C8Y data grid

my Question is:

is there a kind of method or hook available to change reload button label in C8Y DataGrid? My requirement to change Reload to refresh and title text should be different.

This would be extremely helpful; I could not find any document related for the same.

For the reference I have attached screenshot

Thank you in advance

Rahul

Hi @rmishra1,

There is no hook for changing the button label.
But you could do so via e.g. CSS:

button[data-cy="data-grid--reload-btn"]::after {
  content: 'Refresh';
}

button[data-cy="data-grid--reload-btn"] span {
  display: none;
}

Regards,
Tristan

2 Likes

Thanks @Tristan_Bastian
It is working

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.