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
saurabhEventsaurabhEvent 

Visualforce Bug

Hi All,

 

I have built a detail page section on account record, I am placing visualforce page in it.

 

I have visualforce page extend Account Standard controller, however if my page contains nothing ..no html I am seeing a <div class="datepicker"> getting included in my page, and a date picker is displayed on my page,which is wierd.

 

So if i make a standardstylesheets attribute to false, this div goes away.

 

Seems like some bug in Visualforce or I am missing something.

 

Thanks!

sfdcfoxsfdcfox

I think I have seen that happen before. It is related to the standard library's DatePicker (which pops up when a date field has focus). You should probably submit a case to Developer Support, and/or post your code here so there is some visibility on the issue.

osamanosaman

Change your page definition and add the following

 

<apex:page StandardStyleSheets="false" >

 

Hope this helps.