function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
chris_centrachris_centra 

sfdc knowledge - what fields are available from articleList? language?

I have a VF page where i'm displaying articles from the articleList tag.  unfortunately the documentation doesn't tell me which fields are available for display.  i want to build the link manually, because using URLFOR appends retURL, which i don't want (in my case, it creates a mal-formed URL).  however it looks like i can't access the article.language field? 

 

so is there a way to access the language field, or is there a way to build the URL without getting retURL?

 

thanks

chris

Best Answer chosen by Admin (Salesforce Developers) 
francoisLfrancoisL

Hi Chris, 

 

Sorry, we know that it's a missing piece and this information will be available in Summer'11 documentation.

 

But in the meantine, the available fields are:

 - Summary: {!article.summary}

 - Last Modified Date: {!article.lastModifiedDate}

 - First Published Date: {!article.firstPublishedDate}

 - Last Published Date: {!article.lastPublishedDate}

 - URL Name: {!article.urlName}

 - ID: {!article.id}

 - Article Type Name: {!article.articleTypeName}

 - Article Type Label: {!article.articleTypeLabel}

 - Abstract: {!article.Abstract}

 - Article Number: {!article.articleNumber}

 

Thanks.

All Answers

francoisLfrancoisL

Hi Chris, 

 

Sorry, we know that it's a missing piece and this information will be available in Summer'11 documentation.

 

But in the meantine, the available fields are:

 - Summary: {!article.summary}

 - Last Modified Date: {!article.lastModifiedDate}

 - First Published Date: {!article.firstPublishedDate}

 - Last Published Date: {!article.lastPublishedDate}

 - URL Name: {!article.urlName}

 - ID: {!article.id}

 - Article Type Name: {!article.articleTypeName}

 - Article Type Label: {!article.articleTypeLabel}

 - Abstract: {!article.Abstract}

 - Article Number: {!article.articleNumber}

 

Thanks.

This was selected as the best answer
chris_centrachris_centra

great - thanks!

RGK.ax912RGK.ax912

Is this available yet, I am trying to access a field I added to an article type from a visualforce email template and cannot find how to do this

 

Thanks