Premmerce Documentation > Table or Grid > Change the Placeholder in the Search Input Box
About Premmerce
Installation
Table or Grid
CSS and JS
General
By default, the placeholder is “Search…”. Let’s say you want to be more specific like "Seach Name and Description...”, you can do the following.
Open the view page that loads the table
Change the code for _TableLengthAndSearch
to include custom search placeholder
@await Html.PartialAsync("_TableLengthAndSearch"
**,new TableLengthViewModel { SearchPlaceholder = "Seach Name and Description..." }**
)