Skip to content

Commit ade8af3

Browse files
committed
Facets baseline, update 1
1 parent d135d64 commit ade8af3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/search/search-faceted-navigation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: HeidiSteen
88
ms.author: heidist
99
ms.service: azure-ai-search
1010
ms.topic: conceptual
11-
ms.date: 01/16/2025
11+
ms.date: 02/26/2025
1212
---
1313

1414
# Add faceted navigation to a search app
@@ -17,11 +17,11 @@ Faceted navigation is used for self-directed drilldown filtering on query result
1717

1818
In this article, learn the basic steps for creating a faceted navigation structure in Azure AI Search.
1919

20-
> [!div class="checklist"]
20+
<!-- > [!div class="checklist"]
2121
> * Set field attributes in the index
2222
> * Structure the request and response
2323
> * Add navigation controls and filters in the presentation layer
24-
24+
-->
2525
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.
2626

2727
## Faceted navigation in a search page
@@ -204,7 +204,7 @@ Here's another example from the hotels sample. The following code snippet adds `
204204
if (!String.IsNullOrEmpty(categoryFacet))
205205
filter = $"category eq '{categoryFacet}'";
206206
```
207-
207+
<!--
208208
### HTML for faceted navigation
209209
210210
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) {
247247
248248
$("#business_title_facets").html(facetResultsHTML);
249249
}
250-
```
250+
``` -->
251251

252252
## Tips for working with facets
253253

0 commit comments

Comments
 (0)