Table functions > The “Search…” placeholder
Crud Elite
Action Column
Table functions
Common issues
Other
How it works
How can you change the search placeholder text in screenshot below? By default, the search bar displays 'Search...' as the placeholder. However, you might want to provide users with a clearer hint about what can be searched by changing it to 'search name or email.' Here’s how to update the placeholder text in the search bar.
Go to Helpers
folder > TableHelper.cs
> ClientTableConfig
> change the value for SearchMessage
Example:
Original code is:
public static string SearchMessage = $"Search...";
You can change to:
public static string SearchMessage = $"Search Name or Email...";