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
PrazPraz 

date field display

I am using date field for taking input in vf page but I want to hide the [10/4/2010] section that comes after date input box. How can I do that?

bob_buzzardbob_buzzard

You can hide this through styling, as shown below:

 

 

<style>
.dateFormat
{
  display: none;
}
</style>

 Obviously this does mean that if SalesForce change the style class that is used to display this, it will suddenly re-appear.