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
saraha@groupesci.comsaraha@groupesci.com 

EnhancedList does not work inside a custom component in Chrome

Hello,

I have a custom component that contains an EnhancedList. It works fine in FireFox and in IE but in Chrome the grid inside the EnhancedList does not show. I have stripped the code down to the absolute minimum but it still doesn't work. Has anyone encountered this?

 

Thanks!

 --Sarah

 

Here is the code:

 

Component:
<apex:component>
  <apex:enhancedList id="mylist" type="Account" height="300"/>
</apex:component>

 

 

Page:

 

<apex:page >

  <c:EnhancedRelatedList2 />

</apex:page>