just noticed (see previous post) that the name of the tooltip for the
TaskMenu (TaskPane) is now 'click me!'
reason: the TaskMenu has no attribute 'tooltip' (line 102 in TaskPane.js)

Changing 

this.taskMenu = new Jx.Menu({
     image: taskIcon,
     imageClass: taskClass,
     label: OpenLayers.i18n('taskList'), 
     right:0

to

this.taskMenu = new Jx.Menu({
     image: taskIcon,
     imageClass: taskClass,
     label: OpenLayers.i18n('taskList'),
         tooltip: OpenLayers.i18n('taskListTooltip'),
     right:0

and adding a new string in [language].json

'taskListTooltip': 'weitere Funktionen aufrufen',

does the trick.

Bernhard



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/Fusion-Tooltips-for-toolbar-buttons-are-not-shown-proper-in-Internet-Explorer-tp5015434p5015435.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
_______________________________________________
mapguide-users mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/mapguide-users

Reply via email to