Forum Replies Created

  • Udit

    Member
    April 14, 2016 at 7:49 AM in reply to: Move Custom Javascript Buttons to Salesforce1

    Hi,

    We can't create custom javascript button in salesforce1 but you can use inline vf page to do so , For now this is the only possibility to achieve that.

  • Udit

    Member
    April 13, 2016 at 12:28 PM in reply to: Dynamic Font Size for a field data in respect of its length

    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>

Popular Salesforce Blogs

Popular Salesforce Videos