Reply
Regular Contributor
__sandra__
Posts: 32
0
Accepted Solution

Force.com Site RSS feed : Problem displaying html

Hello,

 

I am trynig to reate rss feeds for my foce.com sites.

 

the mapping is :

 

ft:"Latest articles", et:"<a href=/Art?id="+Id+">"+Name+"</a>", ec: "Description : "+Description__c, ea:"Created by Administrator"

 

 

The problem is , when I display the rss on the navigator, I have got the value of the "et" param displayed as it is :

 

<a href=/Art?id=9342100>My Arcticle</a>

 

 

I tried to add  ect: html to my mapping, but I have got the error : You cannot use selected query fields to specify feed parameter entry content type

 

 

 

am i missing something? thank you!

 

 

 

Salesforce.com Certified Force.com Developer
Salesforce.com Certified Administrator
Regular Contributor
__sandra__
Posts: 32
0

Re: Force.com Site RSS feed : Problem displaying html

I found the answer myself!!

 

il order to specify a url for the entry, you should do it by using the "el" parameter

 

here is how it worked for me :

 

 

ft:"Latest artices", et:Name, ec: "Description : "+Description__c, ea:"Created by Webmaster", ect : "html", el: "/mysite/Art?id="+Id

Salesforce.com Certified Force.com Developer
Salesforce.com Certified Administrator