2017-02-24 10 views
0

PXSmartPanelウィンドウを2 Gridに分割することは可能ですか?これまで私が試したことはありますが、うまくいきません。PXSplitContainerを使用してPXSmartPanelウィンドウを分割する方法

<px:PXSplitContainer> 
<template1> 
    <px:PXSmartPanel> 
    <px:PXFormview> 
    ... 
    ... 
    </px:PXFormview> 
    <px:PXGrid> 
    ... 
    ... 
    </px:PXGrid> 

</template1> 
<template2> 
    <px:PXGrid> 
    ... 
    ... 
    </px:PXGrid> 
</template2> 
</px:PXSmartPanel> 
</px:PXSplitContainer> 

答えて

1

PXSmartPanelは、ダイアログボックスをレンダリングするUIコンテナコントロールです。 オペレーティングシステムのダイアログウィンドウのように考えてください。 これはトップレベルコンテナなので、PXSmartPanelを2つのグリッドに分割することはできません。あなたは、次の要素でこのレイアウトを実現することができ Smart Panel Split Container

はおそらく、あなたが望むものを下記のモックアップのようなPXSmartPanel内での分割・コンテナで区切られた2つのグリッドを持つことである

<px:PXSmartPanel> 
    <px:PXSplitContainer> 
     <Template1> 
      <px:PXGrid/> 
     </Template1> 

     <Template2> 
      <px:PXGrid/> 
     </Template2> 
    </px:PXSplitContainer> 

    <px:PXPanel> 
     <px:PXButton/> 
     <px:PXButton/> 
    </px:PXPanel> 
</px:PXSmartPanel> 
+0

これは動作しますが、感謝のAロット。 – JeffreyDRL

関連する問題