Classic SharePoint List view Find and Item missing
The case of the missing Find and Item search box!
We had a busy SharePoint list in a web part on a SharePoint 2013 site. For usability, the list really needed a shaded style view. If you select a style other than "Default" it removes the option to have the "Find an item" search box.
Here's what I did to help out. I set the style back to default. I put a script editor web part in the view with this CSS:
<style type="text/css">
/* background color for alternate rows */
.ms-listviewtable > tbody > tr.ms-alternating {
background: #e1eaf4}
}
</style>
I then restored the Display search box setting on the web part.
Comments