Idbe Ribbon

raphael99

Registered User.
Local time
Yesterday, 22:56
Joined
Apr 6, 2015
Messages
126
Hi
I set up a Ribbon with Idbe Ribbon Creator.
All is fine and working very well.
But When I open a form in datasheet view, the ribbon open another tab "Datasheet" on focus and this confuse users.. How can I deactivate this "Datasheet" Tab?
 
Hi. I got it solved.
Author replied to me and the solution is the follow:
Code:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
onLoad="onRibbonLoad">
 <ribbon startFromScratch="true">
  <tabs>
   <tab id="tabHome" label="Home">
    <group id="grpData" label="Navigation" visible="true">
     <button id="CloseForm" label="Close" imageMso="FileExit"
size="large" onAction="=CloseForm()" />
    </group>
   </tab>
  </tabs>

<contextualTabs>
 <tabSet idMso="TabSetFormDatasheet" visible="false">
 </tabSet>
</contextualTabs>

 </ribbon>
</customUI>


Hope this help someone.
 

Users who are viewing this thread

Back
Top Bottom