Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/add-functionality/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ or

After an embedded dossier has been rendered, you can apply different kinds of filters to chapters in the dossier using methods on the Embedding SDK. In this release, `getFilterList()` only exposes filters defined in the current chapter.

### Dossier.filterSelectAllAttributeElements(filterJson)
### Dossier.filterSelectAllAttributes(filterJson)

Select all the attributes for the filter with `key` and apply the change immediately.

Expand All @@ -585,7 +585,7 @@ Select all the attributes for the filter with `key` and apply the change immedia
}
```

### Dossier.filterDeselectAllAttributeElements(filterJson)
### Dossier.filterDeselectAllAttributes(filterJson)

Deselect all the attributes for the filter with `key` and save the change to client side.

Expand Down
2 changes: 2 additions & 0 deletions docs/add-functionality/methods-and-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,7 @@ Use the `navigationBar` object to customize the navigation bar on the page. All
- `filter` - Show or hide the filter icon. The default is `true`.
- `options` - Show or hide the options icon. The default is `true`.
- `bookmark` - Show or hide the bookmark icon. The default is `true`.
- `undoRedo` - Show or hide the undo and redo buttons. The default is `true`.
- `edit` - Show or hide the edit icon. The default is `false`.

#### Required?
Expand Down Expand Up @@ -640,6 +641,7 @@ microstrategy.dossier.create({
filter: true,
options: true,
bookmark: true,
undoRedo: true,
edit: false,
},
});
Expand Down
4 changes: 4 additions & 0 deletions docs/embed-library-main-page/embed-custom-ui-on-all-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ microstrategy.embeddingContexts.embedLibraryPage({
options: true,
search: false,
bookmark: true,
undoRedo: true,
edit: false,
},
},
Expand Down Expand Up @@ -259,6 +260,9 @@ Use the `navigationBar` object to customize the navigation bar on the page. All
- `bookmark`
- Show or hide the bookmark icon.
- Default value: `true`.
- `undoRedo`
- Show or hide the undo and redo buttons.
- Default value: `true`.
- `edit`
- Show or hide the edit icon.
- Default value: `false`.
Expand Down