- Issue created by @mrddthi
- @thidd opened merge request.
- Status changed to Fixed
over 1 year ago 10:34pm 28 August 2023 Automatically closed - issue fixed for 2 weeks with no activity.
`this.searchInputView` will return LabeledFieldView
And `this.searchInputView = _createInput`
in another hand:
_createInput(label) {
const labeledInput = new LabeledFieldView(this.locale, createLabeledInputText);
will create a InputTextView which has the event `input`
Problem solved by
this.searchInputView.fieldView.on('input', (event, data)=>{
console.log(data.data);
});
Fixed
1.0
Code
Automatically closed - issue fixed for 2 weeks with no activity.