No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
<apex:panelbar> のベストプラクティス
- 子 <apex:panelBarItem> コンポーネントのコレクションの <apex:panelBar> コンポーネントへの追加
- <apex:panelBar> コンポーネントに含めることができるのは、<apex:panelBarItem> の子コンポーネントのみです。ただし、子コンポーネントのコレクションを追加する必要がある場合があります。たとえば、取引先に関連付けられている取引先責任者ごとに項目を追加する必要がある場合などです。これを実行するには、次のように <apex:repeat> コンポーネントで <apex:panelBarItem> をラップします。
1swfobject.registerObject("clippy.codeblock-0", "9");<apex:page standardController="account"> 2 <apex:panelBar > 3 <apex:repeat value="{!account.contacts}" var="c"> 4 <apex:panelBarItem label="{!c.firstname}">one</apex:panelBarItem> 5 </apex:repeat> 6 </apex:panelBar> 7</apex:page>