• deepakp
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 5
    Replies

Hi,

 

I am getting ""<!-- Chatter Follow is not visible for unsaved entities -->" message for <chatter follow> component.

 

First time follow link is rendered fine for the chatter:follow component. But when any link on the page is clicked, the "follow link" disappears and "<!-- Chatter Follow is not visible for unsaved entities -->" is placed in the generated HTML for the "Chatter:follow" VF component. 

 

Did anybody face this issue before?

 

Thanks,

Deepak

 

For SAML based SSO , portal_id and org_id are configured in IDP side as attribute and passed in SOAP message.

 

For delegated authentication only username, password and source IP are passed to the web service.

 

How portal_id and org_id should be passed  for delegated authentication?

 

Thanks,

Deepak

 

 

Hi All,

 

 

When I use following code I see date in  "Wed Feb 11 00:00:00 GMT 2009" format

 

 

<apex:column width="10%"> <apex:facet name="header"> <apex:commandLink action="{!search}" value="Close Date" id="cmdSort2"> <apex:param value="o.CloseDate" name="column" assignTo="{!sortExpression}" ></apex:param> </apex:commandLink> </apex:facet> <apex:outputLabel value="{!opp.CloseDate}" /> </apex:column>

 

 

When I use 

<apex:column value="{!opp.CloseDate}" width="10%"/>

 

, it displays date in "mm/dd/yyyy" .

 

What I need to do to display date in "mm/dd/yyyy" format using outputLabel?

 

Are there any functions in Visualforce expression to support this..

 

 

 

Thanks,

Deepak

 

 

 

I need to format display probability % for opportunity as 25% instead of 25.0% and amount as $100.20 instead of $100.2.

 

I could'nt field any functions for formatting in visualforce expression.

 

 

What is best way to handle formatting of data?

 

 

 

My code is as below.

<apex:column headerValue="Amount(K)">
<apex:outputLabel dir="LTR" value="${!ROUND(opp.Amount/1000, 2)}" />
</apex:column>

 

 

I have above in my visualforce page. I sometimes see $3E+1 in amount column.

 

Is ther any way to convert text to currency format in visualforce.

 

<apex:column value="{!opp.Amount}"/> works perfectly. But I want to display amount in thousands and in proper currency format (possibly right aligned with always two digits after decimal point).

 

 

 

Thanks,

Deepak

 

 

Is it possible to use custom cotroller extension with custom list controller?

 

We can only pass standardController or standardSetController to extension class

 

I have written custom list controller for VF page which allows users to edit up to 1000 records.

 

I need to add pagination for this page and want to use some out of box functionality instead of writing complete custom logic for pagination.

 

 

Is there any way to avoid Apex warning "Number of picklist describes: 10 out of 10"?

Is there any other way to get picklist values?

I got following email from SFDC, but my application is working as expected.

Force.com Sandbox

Operation: /apex/oppSearchResult

By user/organization: 00570000001Fs6v/00DR00000006dVg

Caused the following Apex resource warnings:

Number of picklist describes: 10 out of 10

(these emails can be disabled from the user detail page for this user)

 

Thanks,

Deepak

 

I have written VF page which allows user to edit multiple records.
 
In save method in my controller, I am calling update oppportunityList.
 
This saves all records.
I want to save only records that have been changed. Is there any standard functionality in visualforce to detect only changed records.

Hi All,

 

 

When I use following code I see date in  "Wed Feb 11 00:00:00 GMT 2009" format

 

 

<apex:column width="10%"> <apex:facet name="header"> <apex:commandLink action="{!search}" value="Close Date" id="cmdSort2"> <apex:param value="o.CloseDate" name="column" assignTo="{!sortExpression}" ></apex:param> </apex:commandLink> </apex:facet> <apex:outputLabel value="{!opp.CloseDate}" /> </apex:column>

 

 

When I use 

<apex:column value="{!opp.CloseDate}" width="10%"/>

 

, it displays date in "mm/dd/yyyy" .

 

What I need to do to display date in "mm/dd/yyyy" format using outputLabel?

 

Are there any functions in Visualforce expression to support this..

 

 

 

Thanks,

Deepak

 

 

 

I need to format display probability % for opportunity as 25% instead of 25.0% and amount as $100.20 instead of $100.2.

 

I could'nt field any functions for formatting in visualforce expression.

 

 

What is best way to handle formatting of data?

 

 

 

My code is as below.
I have written VF page which allows user to edit multiple records.
 
In save method in my controller, I am calling update oppportunityList.
 
This saves all records.
I want to save only records that have been changed. Is there any standard functionality in visualforce to detect only changed records.