私はVisualforceページに取り組んでいます。Visualforce ページにリストがあり、そのリストを BOLD 文字やハイパーリンクなどのスタイルで CSV ファイルにエクスポートしたいと考えています。
私はこれを試しました:
<apex:page controller="RequestListController" sideBar="false" showheader="false" standardStylesheets="false" cache="true" contentType="application/vnd.ms-excel#List.csv">
<b>"{!selectedRequestStatus}"</b> List,
<b>"Total Records:"</b> {!totalRecords},
<b>"Showing records from {!displayingFrom} to {!displayingTo}"</b>,
"",
"Action","Type","Institution","Site","Study","Subject ID","Submitted By","Date Submitted"
<apex:repeat value="{!appReqList}" var="app">
"<apex:outputLink value="{!app.Approval_URL__c}">Approve / Reject</apex:outputLink>","{!app.Object_Label__c}","{!app.Institution__r.Name}","{!app.Site__r.Name}","{!app.Study__r.Name}","{!app.Subject_Id__c}","{!app.CreatedBy.Name}","<apex:outputText value="{0,date,MM'/'dd'/'yyyy' 'hh:mm a}"> <apex:param value="{!app.CreatedDate}" /> </apex:outputText>"
</apex:repeat>
</apex:page>
しかし、これは機能していません。htmlタグをそのまま表示しています。誰でも私を助けることができます。前もって感謝します