You need to sign in to do that
Don't have an account?
Keithlars
Cannot overwrite column title in pageBlockTable
Why doesn't the code below overwrite the column header.
<apex:column value="{!c.Firstname}" title="Name"></apex:column>
"First Name" is being displayed instead of "Name"
Title is the pass through attribute for the title on the generated td html element, headertitle is the same but for the header cell only.
For more info on the standard title attribute in HTML go here.