-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup examine search results, and adds ability to toggle fields (#9141
) * Cleanup examine search results, and adds ability to toggle fields * update table to use joinarray filter with one-time binding to avoid recalculating filter values, updated filter to not explode when array arg is null * fix failing tests - improve filter to not fail on non-array params, update tests accordingly Co-authored-by: Nathan Woulfe <[email protected]>
- Loading branch information
1 parent
48a3a05
commit ffa704c
Showing
8 changed files
with
188 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
src/Umbraco.Web.UI.Client/src/views/dashboard/settings/examinemanagementfields.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<div> | ||
<umb-editor-view> | ||
<umb-editor-header | ||
name="model.title" | ||
hide-icon="true" | ||
hide-alias="true" | ||
name-locked="true" | ||
hide-description="true"> | ||
</umb-editor-header> | ||
<umb-editor-container> | ||
<umb-box> | ||
<umb-box-content> | ||
<div class="flex mb2" ng-repeat="field in model.availableFields"> | ||
<span class="mr2"> | ||
<umb-toggle | ||
checked="model.fieldIsSelected(field)" | ||
on-click="model.toggleField(field)" | ||
hide-icons="true"> | ||
</umb-toggle> | ||
</span> | ||
<span>{{ field }}</span> | ||
</div> | ||
</umb-box-content> | ||
</umb-box> | ||
</umb-editor-container> | ||
<umb-editor-footer> | ||
<umb-editor-footer-content-right> | ||
<umb-button | ||
type="button" | ||
button-style="link" | ||
label-key="general_close" | ||
shortcut="esc" | ||
action="model.close()"> | ||
</umb-button> | ||
</umb-editor-footer-content-right> | ||
</umb-editor-footer> | ||
</umb-editor-view> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters