Skip to content

Commit

Permalink
Merge branch 'hotfix-10.8.26' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Jul 13, 2017
2 parents 20d511a + e93c454 commit 34af2cf
Show file tree
Hide file tree
Showing 13 changed files with 110 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,32 @@ The `filterPicker` control is an [[formcontrol-objectPicker| object picker]] wit

### Arguments

You can use any arguments that can be used with the [[object picker]]. In addition, the control expects a single **required** option, `filterObject` indicating the object that selected / added filters should apply to.
You can use any arguments that can be used with the [[object picker]]. In addition, the control accepts the following attributes:

<div class="table-responsive">
<table class="table">
<tbody>
<tr>
<th>filterObject (required)</th>
<td>The target object for the filter</td>
</tr>
<tr>
<th>rulesEngineContextData (optional)</th>
<td>Struct of data that will be passed to all filter field configuration forms in the quick add / edit filter builder. This allows you to limit choices on fields when creating dynamic filters within specific contexts. As this is a stuct, it can only be injected using `additionalArgs` argument to renderForm().</td>
</tr>
<tr>
<th>preSavedFilters (optional)</th>
<td>For use with the quick add/edit filter builders. A list of saved filters that will be used additionally filter the "filter count" shown in the filter builder.</td>
</tr>
<tr>
<th>preRulesEngineFilters (optional)</th>
<td>For use with the quick add/edit filter builders. A list of saved rules engine filter IDs that will be used additionally filter the "filter count" shown in the filter builder.</td>
</tr>
</tbody>
</table>
</div>

expects a single **required** option, `filterObject` indicating the object that selected / added filters should apply to.


### Example
Expand Down

This file was deleted.

0 comments on commit 34af2cf

Please sign in to comment.