UIBackbasePanel nesting.

Hi,

I have created a UIBackbasePanel (A) and then another UIBackbasePanel (B) as its child and then another UIBackbasePanel (C). Finally it looks like this.

C is a child to B is a child to A which is a child to a UIBackbasePanelSet.

I am observing that C is not displaying as visible in the browser. Can UIBackbasePanels be nested like this?

Thanks
Ed

Hi Ed, You should not nest

Hi Ed,

You should not nest a panel within a panel. Backbase panels should be nested in a panelSet.

Example.

<bjsf:panelSet rows="50% *">
                <bjsf:panel>
                        <bjsf:panelSet columns="50% *">
                                <bjsf:panel>
                                        <bjsf:panelSet rows="50% *">
                                                <bjsf:panel />
                                                <bjsf:panel>
                                                        <bjsf:panelSet columns="20% *">
                                                                <bjsf:panel />
                                                                <bjsf:panel style="background-color: #FFCCFF;" />
                                                        </bjsf:panelSet>
                                                </bjsf:panel>
                                        </bjsf:panelSet>
                                </bjsf:panel>
                                <bjsf:panel />
                        </bjsf:panelSet>
                </bjsf:panel>
                <bjsf:panel />
        </bjsf:panelSet>

Hope this helps,

-Senaka