• manoj nagireddy 3
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 4
    Replies
I'm creating a visualforce page that displays data for confirmation when changes are made to a record and I wanted an email to be triggered when the changes are confirmed/ submitted. I added a picklist to the object and reference it in the page using

<td><apex:inputField value="{!RMA__c.Changes_have_been_review__c}"/>        
            </td>

It shows up fine and has the values from the picklist field but whenever you select your value and hit submit it doesn't update the objects field. 

Any help would be appreciated.

-Tyler
I cannot complete the "Get started with Chatter" hands on challenge because it says I haven't updated my title in Chatter, but I did update and save it.  This is preventing me from finishing the unit.

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