The way to find the child component in the fragment

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.

Hi,

Where do you try to access child components? Probably they are not yet loaded.

Screenshot 2025-09-29 at 17.49.36

Regards,
Gleb