-
-
Notifications
You must be signed in to change notification settings - Fork 19
Custom Filter
Demo Page / Demo Client Component / Custom InputFilter.ts
You can also create your own Custom Filter with any html/css you want and/or jQuery library you wish to use. Aurelia template (View) are not supported at this point, if you wish to contribute on that end then I certainly accept PR (Pull Request).
- as mentioned in the description, only html/css and/or jQuery libraries are supported.
- this mainly mean that Aurelia templates (Views) are not supported (feel free to contribute).
- SlickGrid uses
table-cell
as CSS for it to display a consistent height for each rows (this keeps the same row height/line-height to always be the same).- all this to say that you might be in a situation were your filter shows in the back of the grid. The best approach to overcome this is to use a modal if you can or if the library support
append to body container
. For example, you can see thatmultiple-select.js
support acontainer
and is needed for the filter to work as can be seen in the multipleSelectFilter.ts
- all this to say that you might be in a situation were your filter shows in the back of the grid. The best approach to overcome this is to use a modal if you can or if the library support
- You first need to create a
class
using the Filter interface. Make sure to create all necessary public properties and functions.
- You can see a demo with a custom-inputFilter.ts that is used in the demo - example 4
-
There are two methods to use your custom filters on the grid.
- Simply set the
columnDefinition.filter.model
to your new custom Filter class and instantiate it withnew
(you can also use dependency injection in the constructor if you wish). Here is an example with a custom input filter:
// define you columns, in this demo Effort Driven will use a Select Filter this.columnDefinitions = [ { id: 'title', name: 'Title', field: 'title' }, { id: 'description', name: 'Description', field: 'description', type: FieldType.string, filterable: true, filter: { model: CustomInputFilter // create a new instance to make each Filter independent from each other } } ]; // you also need to enable the filters in the Grid Options this.gridOptions = { enableFiltering: true };
- Or register your filter with the
registerTransient
method on the aurelia container in the startup file (see the demo index.ts. It is recommended to useregisterTransient
, though you could use whatever lifetime you want). This registration is usually inmain.ts
ormain.js
. Then in your view model pass your custom filter tocolumnDefinition.filter.model
property and we will use aurelia's container to instantiate your filter. Here is that example:
myCustomFilter.ts
export class MyCustomFilter implements Filter { private $filterElm: any; grid: any; searchTerms: SearchTerm[]; columnDef: Column; callback: FilterCallback; operator: OperatorType | OperatorString = OperatorType.equal; init(args: FilterArguments) { // ...logic } clear(triggerFilterKeyup = true) { // ...logic } destroy() { // ...logic }
main.ts
// import your custom filter from its location import { MyCustomFilter } from './cutomFilters/myCustomFilter'; // main.ts or main.js export function configure(aurelia) { aurelia.use.standardConfiguration().plugin(PLATFORM.moduleName('aurelia-slickgrid')) // this can be registered before or after the plugin aurelia.container.registerTransient(FILTER_PLUGIN_NAME, MyCustomFilter); aurelia.start().then(() => aurelia.setRoot(PLATFORM.moduleName('app'))); }
my-view-model.ts
// define you columns, in this demo Effort Driven will use a Select Filter this.columnDefinitions = [ { id: 'title', name: 'Title', field: 'title' }, { id: 'description', name: 'Description', field: 'description', type: FieldType.string, filterable: true, filter: { type: 'my-custom-filter' } } ]; // you also need to enable the filters in the Grid Options this.gridOptions = { enableFiltering: true };
- Simply set the
By default, the library uses the inputFilter when none is specified. However, you can override this value with any filter you like during the startup/configuration of your Aurelia application:
main.ts
aurelia.use.feature(PLATFORM.moduleName('aurelia-slickgrid/index'), config => {
// change any of the default global options
config.options.defaultFilter = CustomInputFilter // or you can use another library Filter
});
If you want to load the grid with certain default filter(s), you can use the following optional properties:
-
searchTerms
(array of values)
For example, setting a default value into an input
element, you can simply get the search term with columnDef.filter.searchTerms
and set the default value in jquery with $(filterElm).val(this.searchTerms);
If you want to pass a collection
to your filter (for example, a multiple-select needs a select list of options), you can then use it in your custom filter through columnDef.filter.collection
By default a collection
uses the label/value
pair. You can loop through your collection
and use the label/value
properties. For example:
// loop through collection to create select option
this.columnDef.filter.collection.forEach((option: SelectOption) => {
// use the option value & label
options += `<option value="${option.value}">${option.label}</option>`;
});
What if your collection
have totally different value/label pair? In this case, you can use the customStructure
to change the property name(s) to use. You can change the label and/or the value, they can be passed independently.
For example:
// use custom structure value/label pair
const labelName = (this.columnDef.filter.customStructure) ? this.columnDef.filter.customStructure.label : 'label';
const valueName = (this.columnDef.filter.customStructure) ? this.columnDef.filter.customStructure.value : 'value';
this.columnDef.filter.collection.forEach((option: SelectOption) => {
// use the option value & translated label
options += `<option value="${option[valueName]}">${option[labelName]}</option>`;
});
By default a collection
uses the label/value
pair without translation or labelKey/value
pair with translation usage. So if you want to use translations, then you can loop through your collection
and use the labelKey/value
properties. For example:
this.columnDef.filter.collection.forEach((option: SelectOption) => {
// translate label
const textLabel = (option.labelKey && typeof this.i18n.tr === 'function') ? this.i18n.tr(option.labelKey || ' ') : option.labelKey;
// use the option value & translated label
options += `<option value="${option.value}">${textLabel}</option>`;
});
What if you want to use customStructure
and translate the labels? Simply pass the flag enableTranslateLabel: true
For example:
// use custom structure value/label pair
const labelName = (this.columnDef.filter.customStructure) ? this.columnDef.filter.customStructure.label : 'label';
const valueName = (this.columnDef.filter.customStructure) ? this.columnDef.filter.customStructure.value : 'value';
this.columnDef.filter.collection.forEach((option: SelectOption) => {
// translate label
const textLabel = (option.labelKey && typeof this.i18n.tr === 'function') ? this.i18n.tr(option[labelName] || ' ') : option[labelName];
// use the option value & translated label
options += `<option value="${option[valueName]}">${textLabel}</option>`;
});
I added a new Example 26 which have both Custom Editors & Filters which uses Aurelia Custom Elements. The 2nd column "Assignee" is the column that uses both (it's a simple select dropdown created as an Aurelia Custom Elements here) and you need to create a Custom Filter like here and use that Custom Filter in your column definition like here.
Personally I don't find this very straightforward and I don't recommend using Aurelia Custom Elements for Editors/Filters as it adds a lot of boilerplate (compare to 1 step with a jQuery Custom Filter) but if you really wish to go that route, it's now possible following the steps shown below.
The steps to use an Aurelia Custom Element as a Custom Filter are the following:
- Create a Custom Filter that will handle the creation or compilation of the Aurelia Custom Element into a SlickGrid Filter. For that you can take a look at this Custom Filter
- Define your Aurelia Custom Element, for example take a look at this simple Select Custom Element
- Use the Custom Filter inside your Column Definitions, for that you can see previous paragraph here
Contents
- Aurelia-Slickgrid Wiki
- Installation
- Styling
- Interfaces/Models
- Testing Patterns
- Column Functionalities
- Global Grid Options
- Localization
- Events
- Grid Functionalities
- Auto-Resize / Resizer Service
- Resize by Cell Content
- Add/Delete/Update or Highlight item
- Dynamically Change Row CSS Classes
- Column Picker
- Composite Editor Modal
- Context Menu
- Custom Tooltip
- Excel Copy Buffer
- Export to Excel
- Export to File (CSV/Txt)
- Grid Menu
- Grid State & Presets
- Grouping & Aggregators
- Header Menu & Header Buttons
- Header Title Grouping
- Pinning (frozen) of Columns/Rows
- Row Colspan
- Row Detail
- Row Selection
- Tree Data Grid
- SlickGrid & DataView objects
- Addons (controls/plugins)
- Backend Services