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
Elad Kaplan 3Elad Kaplan 3 

add image to column header

I'm trying to add a picture to a table column header, using an image located in my static resource.

Anybody got a chance to do it ?

Thanks!!
Elad Kaplan 3Elad Kaplan 3
I'm actually taliking about putting it in the column header, not displaying it on each row..
Anoop yadavAnoop yadav
Hi,

Try like this.
<apex:column styleclass="inBorder">
        <apex:facet name="header"> <apex:image value="{!$Resource.customerImage}"/>   </apex:facet> 
             
      </apex:column>

Elad Kaplan 3Elad Kaplan 3
Thank you Anoop !! 

Got it to work.
Anoop yadavAnoop yadav
Mark it best answer if you find it a solution.
It helps others.

Thanks..
Anoop