[Vtigercrm-commits] [vtiger development] #5354: Analytics > Dashboard Charts: Tooltip not appearing on Firefox

vtiger development vtiger-tickets at trac.vtiger.com
Fri Sep 12 14:47:36 EDT 2008


#5354: Analytics > Dashboard Charts: Tooltip not appearing on Firefox
-------------------------+--------------------------------------------------
  Reporter:  prasad      |       Owner:  developer
      Type:  defect      |      Status:  new      
  Priority:  unassigned  |   Milestone:  5.1.0    
 Component:  vtigercrm   |     Version:  5.0.4    
Resolution:              |    Keywords:           
-------------------------+--------------------------------------------------
Comment (by prasad):

 Image Maps are created for rendering the Dashboard charts.
 Only alt tag is set for <area> hence when mouse hovers over the area the
 tooltip appears on IE.

 {{{
 <map name="cache/images/-2008521774_pipeline_en_us_17623550220.png">
     <area alt="admin - 1 opportunities where sales stage is Qualification"
           shape="rect" coords="122,80,170,108" ...>
     </area>
 </map>
 }}}

 We need title to be set (with same message as alt) to make the tooltip
 appear in Firefox.

 {{{
 <map name="cache/images/-2008521774_pipeline_en_us_17623550220.png">
     <area alt="admin - 1 opportunities where sales stage is Qualification"
           title="admin - 1 opportunities where sales stage is
 Qualification"
           shape="rect" coords="122,80,170,108" ...>
     </area>
 </map>
 }}}

 Image Map are being generated using the ImageGraph (Image) library, we
 need to identify how to create title attribute too. (Ex. look at file,
 modules/Dashboard/horizontal_bargraph.php)

-- 
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5354#comment:1>
vtiger development <http://trac.vtiger.com/>
vtigerCRM




More information about the vtigercrm-commits mailing list