@model SearchBoxModel @{ const string categoryFormName = "cid"; const string termFormName = "q"; const string searchBoxId = "small-searchterms"; }
@if (Model.ShowSearchBox) { @if(Model.ShowSearchBoxCategories) { } @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.SearchBoxBeforeSearchButton, additionalData = Model }) @if (Model.AutoCompleteEnabled) { } @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.SearchBox, additionalData = Model }) }