有条件地改变颜色Apex / Visualforce

时间:2013-11-08 14:14:47

标签: colors return salesforce visualforce apex

我正在尝试根据运营商对象字段“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

1 个答案:

答案 0 :(得分:0)

您的控制器中只有一个颜色变量,因此您不能期望在VisualForce页面中获得多种颜色。您将要创建一个存储carrier__c对象和颜色的类,然后创建一个列表来存储每个carrier__c对象的实例。

public class colorAndObject {
    public string color{get; set;}
    public carrier__c carrier{get;set;}

    public colorAndObject(string carColor, carrier__c carrierName) {
        color = carColor;
        carrier = carrierName;
    }
}

list<colorAndObject> carriersWithColors = new list<colorAndObject>();

在您的VisualForce页面中,不要使用{!carriers}作为您的表值,而是使用您的carriersWithColors列表。

<apex:pageblocktable value="{!carriersWithColors }" var="c">
    <apex:column headervalue="Carrier">
        <font color="{!c.color}">
            <apex:outputtext value="{!c.carrier.name}" />
        </font>
    </apex:column>

这应该足以让你入门。我会让你填补空白。