Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
XamWebRibbon QAT
posted

How to add the items in the Quick Access Toolbar as I have tried with the below code but I am not able to achieve the results.

<igRibbon:XamWebRibbon.QuickAccessToolbar>
    <igRibbon:QuickAccessToolbar>
     <igRibbon:QatPlaceholderTool TargetId="tbtool1"/>
     <igRibbon:QatPlaceholderTool TargetId="Tab1_Group1" TargetType="RibbonGroup"/>
    </igRibbon:QuickAccessToolbar>
   </igRibbon:XamWebRibbon.QuickAccessToolbar>

 

 

Parents
  • 1354
    Verified Answer
    posted

    Hi,

    The tool that you're placing in the quick access toolbar has to exist in the ribbon for it to appear in the QAT.  The code you have presented looks syntactically correct so the next step would be to ensure that "tbtool1" exist either in a groups tools collection, or in the ribbons 'toolsNotInRibbon" collection:

    <igr:XamWebRibbon.ToolsNotInRibbon>

                    <igr:ButtonTool Id="tbtool1"/>

     </igr:XamWebRibbon.ToolsNotInRibbon>

    Let me know if that helps, or if I was unclear.

Reply Children