Hi Team ,
I’m trying to get the child component in my base class extend Fragment class. The fragment screen will extend to this base class. I encounter that I’m unable to find the child component in the base class fragment. The way I tried was :
getContent().getChildren().forEach(this::processChildren);
private void processChildren(Component component) { ........ }
But It works well in Standard View as below.
getContent().getComponents().forEach(this::processChildren);
private void processChildren(Component component) { .......}
Do you have any suggestions on how to find & recurse the child component in Fragment ?
Your reply is highly appreciated. Thank you.
Best Regard ,
Chee Hao.