ピックリスト質問ですか?あなたはどこか、それを何か使いたいですか?
私の質問に答える(または答えない)間に、私はあなたのためのヒントを投稿します。彼らが何とかあなたを助けることを願っています。
たとえば、すべてのthousフィールドを持つsObjectがあります。 Visualforceページでは、次のことを行います。コントローラクラスで
<apex:pageBlockSection id="myContentSection" title="My Content Section" columns="1">
<apex:inputField value="{!myObject.Id}" >
<apex:actionSupport event="onchange" action="pullObjectById" reRender="myContentSection" />
</apex:inputField>
<apex:inputField value="{!myObject.Name}"/>
<apex:inputField value="{!myObject.Balance}"/>
<apex:inputField value="{!myObject.Amount}"/>
<apex:inputField value="{!myObject.Paid}"/>
</apex:pageBlockSection>
あなたは、ルックアップ・ウィンドウからオブジェクトを選択するときに、あなたのページに読み込ま他のすべてのフィールドを持つことになります
public myObjectType myObject {get;set;}
public PageReference pullObjectById() {
myObject = [ select Id, Name, Balance, Amount, Paid from myObjectTable where Id =:myObject.Id];
return null;
}
方法があるでしょう。
上記のような情報テーブルがあり、その名前をクリックすると、他のセルの値をページの他の入力フィールドにコピーしたいのですか?または、選択したレコードの頂点で計算を行い、その結果をページに戻したいとしますか? –