Enabling grid view for search results in WebLink 9 has become extremely easy. Grid view is supported in the search page and in the welcome page after running a search. To enable grid view, open the search.aspx and/or the welcome.aspx depending on where you want the search results grid to appear. Once open for editing, look for the following code:
<div style="display: table; table-layout: fixed; width: 100%;"> <%-- Set Enabled to true if using grid view; otherwise, set it to false for list view --%> <weblink:SearchResultsBrowser id="TheSearchResultsBrowserGrid" runat="server" width="100%" MaxLength="20" Enabled="false" /> </div>
To see the search results grid, change Enabled="false" to Enabled="true". If you want this in both the welcome page and search page, you have to change this in both files. After it is changed, save the file and refresh the browser.