キャリア オブジェクトのフィールド「Team__c」の ID がユーザー リストの ID と一致するかどうかに基づいて、リスト内の値の色を変更しようとしています。コントローラーが一度だけ色を返し、この色がすべてのレコードに適用されます (デバッグ ログを参照)。リスト内のすべての値は青で、一部は赤である必要があります。前もって感謝します。
Visualforce コード:::
<apex:pageblocktable value="{!carriers}" var="c">
<apex:column headervalue="Carrier">
<font color="{!color2}">
<apex:outputtext value="{!c.name}"/>
</font>
</apex:column>
コントローラ:::
public string getcolor2() {
list<carrier__c> carriers = [select team__c from carrier__c where team__c != NULL];
list<user> users= new list<user>();
users = [select id from user where userrole.name = 'Executive'];
set<string> uid = new set<string>();
for(user us: users){
uid.add(us.id);
}
string color = 'red';
for(carrier__c car: carriers){
system.debug('*****List of carriers: ' + carriers);
system.debug('*****List of users: ' + uid);
system.debug('*****Current carrier= '+car);
if(uid.contains(car.team__c) ){
color='blue';
system.debug('***** Set color to:'+color);
}
}
system.debug('***** Returning color: ' + color);
return color;
}
デバッグ ログ::::
*****List of carriers: (Carrier__c:{Team__c=005U0000001D3E5IAK, Id=a0HJ0000003bl8nMAA}, Carrier__c:{Team__c=005J0000001EEIHIA4, Id=a0HJ0000003bitnMAA}, Carrier__c:{Team__c=005U0000001BHRKIA4, Id=a0HJ0000003eD64MAE})
*****List of users: {005U0000001D3E5IAK}
*****Current carrier= Carrier__c:{Team__c=005U0000001D3E5IAK, Id=a0HJ0000003bl8nMAA}
***** Set color to:blue
*****List of users: {005U0000001D3E5IAK}
*****Current carrier= Carrier__c:{Team__c=005J0000001EEIHIA4, Id=a0HJ0000003bitnMAA}
*****List of users: {005U0000001D3E5IAK}
*****Current carrier= Carrier__c:{Team__c=005U0000001BHRKIA4, Id=a0HJ0000003eD64MAE}
***** Returning color: blue