Service Manager HTML5 Portal: Show Service Offering Filter

less than 1 minute read

I have a lot of Service Offerings in my portal, so I want the filter to be front and center when a user goes to the HTML5 portal. I did a quick edit to the Offerings.cshtml file and was able to make the filter default to showing.

Simply go to Portal\Views\Home\Offerings.cshtml and find this line:

<input type="search" placeholder="@Resources.SelfServicePortalResources.FindByKeywords" name="searchRequest" id="searchRequest" style="display:none;" oninput="OnSearchOrFilter()">

Take out the style to make it default to visible:

<input type="search" placeholder="@Resources.SelfServicePortalResources.FindByKeywords" name="searchRequest" id="searchRequest" oninput="OnSearchOrFilter()">

Now when someone goes to the portal the filter will be showing!

image

Leave a Comment