0
我有一個與Visualforce電子郵件模板相關的問題,請幫我解決。 我使用下面的代碼隱藏TR:我們如何在電子郵件模板中使用條件語句?
<apex:repeat var="cx" value="{!relatedTo.Airline_Conf_s__r}">
<tr style="{!IF(!cx.Include_in_Confirmation__c == true,"display:none!important; ","")}">
<td>
<apex:outputText value="{!cx.Airlines_Url__c}" escape="false" />
</td>
</tr>
</apex:repeat>
but i need it to done without inline style .how can it possible.