Activity Forums Salesforce® Discussions Dynamic Font Size for a field data in respect of its length

  • Udit

    Member
    April 13, 2016 at 12:28 pm

    You can achieve this by using Output Panel in side your table.
    EXAMPLE:

    <td>
    <apex:outputPanel rendered="{!IF(a.DescriptionLength<50, true, false)}">
    <span style="font-size: 70%;">{!a.proObj.Description}</span>
    </apex:outputPanel>
    <apex:outputPanel rendered="{!IF((a.DescriptionLength>50 && a.DescriptionLength<70), true, false)}">
    <span style="font-size: 58%;">{!a.proObj.Description}</span>
    </apex:outputPanel>
    <apex:outputPanel rendered="{!IF(a.DescriptionLength>70, true, false)}">
    <span style="font-size: 50%;">{!a.proObj.Description}</span>
    </apex:outputPanel>
    </td>

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos