fix reset filters by setting initial values into hidden text fields filters
This commit is contained in:
parent
b81c7ea67b
commit
d03630ff65
2 changed files with 242 additions and 14 deletions
|
|
@ -0,0 +1,10 @@
|
|||
import {AnalyticalScope, Behavior, TextBase, Visible} from "@webbpm/base-package";
|
||||
|
||||
@AnalyticalScope(TextBase)
|
||||
export class TextInitialValue extends Behavior {
|
||||
@Visible()
|
||||
public setInitialValue(value: string): void {
|
||||
const textScript = this.getScript(TextBase);
|
||||
textScript.initialValue = value;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue