SUPPORT-8638:fixes
This commit is contained in:
parent
0aadf64aa0
commit
17d848d18c
1 changed files with 4 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import {
|
||||
AnalyticalScope,
|
||||
Behavior, CheckBox,
|
||||
ComboBoxBase,
|
||||
ComboBoxBase, DateTimePicker,
|
||||
FilterComponent,
|
||||
FilterGroup,
|
||||
TextBase
|
||||
|
|
@ -44,6 +44,9 @@ export class FilterRouteHandlerScript extends Behavior {
|
|||
else if (controlWithValue instanceof CheckBox) {
|
||||
controlWithValue.initialValue = paramValue.toLowerCase() === "true";
|
||||
}
|
||||
else if (controlWithValue instanceof DateTimePicker) {
|
||||
controlWithValue.initialValue = new Date(paramValue);
|
||||
}
|
||||
}
|
||||
});
|
||||
this.filterGroup.triggerFilter();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue