标签: angular angular6 devextreme devextreme-angular
我有一个带有dx文本框的嵌套组件。 在紧急时刻,我想在父项中知道文本框是否为空(值)。 我该如何检查? 弗兰克
答案 0 :(得分:0)
在我使用的父组件上
@ViewChild(MyChildComponent) myChildComponent: MyChildComponent; ... if (this.myChildComponent.myValueFromTextBox == '') {...}