Visualforce と並行して 2 つの pageblock-Elements を設定したいと考えています。どうやってやるの?
<apex:page>
<apex:pageblock title="titleA" id="blockA">
</apex:pageblock>
<apex:pageblock title="titleB" id="blockB">
</apex:pageblock>
</apex:page>
ありがとうございました
Visualforce と並行して 2 つの pageblock-Elements を設定したいと考えています。どうやってやるの?
<apex:page>
<apex:pageblock title="titleA" id="blockA">
</apex:pageblock>
<apex:pageblock title="titleB" id="blockB">
</apex:pageblock>
</apex:page>
ありがとうございました
それは本当に CSS に関する質問です。フローティング div を隣り合わせにすること、CSS をページ レイアウトに使用することなどについてです。SO で何度も質問されています。それらを にラップし<apex:outputPanel>
、 float:right などで遊んでください。
純粋な Visualforce ソリューションが必要で、CSS に慣れていない場合は、テーブルにレンダリングできます。ただし、レイアウトにテーブルを使用してはならない方法については、哲学的な議論があります;)
<apex:panelGrid>
その場合、最も使いやすいはずです。
<apex:page>
<apex:panelGrid columns="2">
<apex:pageblock title="titleA" id="blockA">
</apex:pageblock>
<apex:pageblock title="titleB" id="blockB">
</apex:pageblock>
</apex:panelGrid>
</apex:page>