You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/search-faceted-navigation.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ author: HeidiSteen
8
8
ms.author: heidist
9
9
ms.service: azure-ai-search
10
10
ms.topic: conceptual
11
-
ms.date: 01/16/2025
11
+
ms.date: 02/26/2025
12
12
---
13
13
14
14
# Add faceted navigation to a search app
@@ -17,11 +17,11 @@ Faceted navigation is used for self-directed drilldown filtering on query result
17
17
18
18
In this article, learn the basic steps for creating a faceted navigation structure in Azure AI Search.
19
19
20
-
> [!div class="checklist"]
20
+
<!--> [!div class="checklist"]
21
21
> * Set field attributes in the index
22
22
> * Structure the request and response
23
23
> * Add navigation controls and filters in the presentation layer
24
-
24
+
-->
25
25
Code in the presentation layer does the heavy lifting in a faceted navigation experience. The demos and samples listed at the end of this article provide working code that shows you how to bring everything together.
26
26
27
27
## Faceted navigation in a search page
@@ -204,7 +204,7 @@ Here's another example from the hotels sample. The following code snippet adds `
204
204
if (!String.IsNullOrEmpty(categoryFacet))
205
205
filter=$"category eq '{categoryFacet}'";
206
206
```
207
-
207
+
<!--
208
208
### HTML for faceted navigation
209
209
210
210
The following example, taken from the `index.cshtml` file of the NYCJobs sample application, shows the static HTML structure for displaying faceted navigation on the search results page. The list of facets is built or rebuilt dynamically when you submit a search term, or select or clear a facet.
@@ -247,7 +247,7 @@ function UpdateBusinessTitleFacets(data) {
0 commit comments