You need to sign in to do that
Don't have an account?
Problem in Apex:Image Tag
<apex:imagevalue="/img/msg_icons/info32.png" title="High KPI value indicates High Performance score OR for some KPIs the high value may mean a low performance score.
Please add Threshold values/score according to KPI"/>
I want to place new line in "title" attribute. I tried \n, , \t, but nothing is working.
Please help me.
Please add Threshold values/score according to KPI"/>
I want to place new line in "title" attribute. I tried \n, , \t, but nothing is working.
Please help me.
You can achieve this in two ways.
1. If you have Apex controller with that page then simply create a string variable and append it to Title attribute.
2. You can use Javascript, Please check below link for sample code
http://www.mindfiresolutions.com/Apply-Line-Breaks-In-Help-Text-2461.php
Best Regards,
Mithun.
All Answers
You can achieve this in two ways.
1. If you have Apex controller with that page then simply create a string variable and append it to Title attribute.
2. You can use Javascript, Please check below link for sample code
http://www.mindfiresolutions.com/Apply-Line-Breaks-In-Help-Text-2461.php
Best Regards,
Mithun.
You can not put HTML things like \n  p; or in Title tag.
Please confirm if you want to show dynamic value in Title attribute.
Sameer Tyagi
http://mirketa.com/
Thanks once again..........