View Single Post
 
Old 01-29-2015, 03:58 AM
NobodysPerfect NobodysPerfect is offline Windows 8 Office 2010 32bit
Competent Performer
 
Join Date: Jan 2014
Location: Germany
Posts: 136
NobodysPerfect is on a distinguished road
Default Problem with RibbonX showLabel=false

Hi to all RibbonX Experts,

I'd like to add the "Document Property" button to a user-defined ribbon. I do not want the label ("Document Property") to be displayed, only the button.

As the 'Document Properties' are accessible via build-in Controls, I added the lines:
Code:
<gallery idMso="PropertyInsert" showLabel="false"/>
Result: the icon is display with label -> why? Hovering with the mouse over the button displays the label.

The only way I found to suppress the label is to set it to a single space
Code:
<gallery idMso="PropertyInsert" label=" "/>
Result: the icon is displayed without label (= space), but hovering with the mouse over the button shows (of course) the empty label.

I tried adding "screentip" and "supertip", but nothing changes: an empty rectangle appears when hovering over the icon.

I 'simply' want the icon to be displayed without label but with additional information on hovering.

'showLabel' does not seems to work correctly with "gallery idMso": with "gallery idMso="BreaksGallery" I also failed with "showLabel="false"", but succeeded with label=" ", the BreaksGallery icon is displayed without text but with additional info.

So I simply can't find a reliable approach. What's wrong with my approach?

Any help appreciated.
Thanks NP
Reply With Quote