• Łukasz
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies

Hey guys,

 

I know that currently in visualforce, as a workaround we can use an input date field by binding it to a date field from an unused object instance.

 

Currently I have a visualforce page with a custom controller.

<apex:page controller="FundingReportController" sidebar="false" showheader="false" standardstylesheets="true">

 I want to display two date fields here which show the date picker. I want to be able to be able to use the date fields from a custom object called money transactions.

 

<apex:form>
           <table id="searchTable" cellpadding="2" cellspacing="2">
               <tr>
                    <td style="font-weight:bold;">From Date:<br/>     
                    <apex:inputField value="{!mt.closeDate}"/>  

 I am getting this error.

 Error: Unknown property 'FundingReportController.mt'

How do I declare the Money transactions object mt in this case since the contoller is a custom one and is required. Any other way I can declare the custom object I need so I can reference the fields I need in this form?

 

 

how can i write a trigger to change the first letter capital for  existing  first name and last name on the Contact standard object.

 

Any help will be appreicable.

 

Thanks