BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hi Team!
I have created a ribbon use the ejs-ribbon control as below image
I make a button in the my application, when I click this button, I want to hide a tab or group in the Ribbon control
Do you have any property for the Ribbon to hide this one?
Please let me know your solution or suggestion to resolve this one
Thanks!
Hi Pham,
Greetings from Syncfusion support,
You can use the built-in methods showTab, hideTab, showGroup & hideGroup to dynamically show or hide tabs and groups in the Ribbon control based on your requirements. Please check the below shared code block and sample for reference.
Sample - link
App.component.html
<div id="default-ribbonContainer"> <label for="checked" style="padding: 10px">Show / hide "Insert" tab: </label> <ejs-switch onLabel="ON" offLabel="OFF" (change)='onTabSwitch($event)'></ejs-switch> <label for="checked" style="padding: 10px">Show / hide "Illustrations" group of "Insert" tab: </label> <ejs-switch onLabel="ON" offLabel="OFF" (change)='onGroupSwitch($event)'></ejs-switch> <ejs-ribbon #defaultRibbon id="default-ribbon" [fileMenu]='fileSettings' [enablePersistence]="true" (launcherIconClick)='launchClick($event)'> <e-ribbon-tabs> <e-ribbon-tab header="Home"> <e-ribbon-groups> .... <e-ribbon-group header="Illustrations" overflowHeader="Illustrations" id="defaultRibbon-insert-illustration" [showLauncherIcon]=true orientation="Row" groupIconCss="e-icons e-image" [enableGroupOverflow]=true> <e-ribbon-collections> ..... </e-ribbon-groups> </e-ribbon-tab> </e-ribbon-tabs> </ejs-ribbon> </div> |
App.component.ts
public pasteOptions: ItemModel[] = [{ text: "Keep Source Format" }, { text: "Merge Format" }, { text: "Keep Text Only" }]; public pasteSettings: RibbonSplitButtonSettingsModel = { iconCss: 'e-icons e-paste', items: this.pasteOptions, content: 'Paste' }; .... public onTabSwitch(args) { if (args.checked) this.ribbonObj.hideTab('defaultRibbon-insert'); else this.ribbonObj.showTab('defaultRibbon-insert'); }
public onGroupSwitch(args) { if (args.checked) this.ribbonObj.hideGroup('defaultRibbon-insert-illustration'); else this.ribbonObj.showGroup('defaultRibbon-insert-illustration'); } |
Please get back to us if you need any further assistance.
Regards,
Vigneshwaran
Thanks
Vigneshwaran
I have tried it and it's working fine
Thank You!
Pham,
Welcome, please get back to us if you need any further assistance.
Regards,
Indrajith
Hi
Indrajith Srinivasan
I have tried your solution in the sample code
I can hide the Tab of the Ribbon Component but I cannot hide the Group
this is my code, as you can see, I want to hidden the Clipboard group, I used the hideGroup method but it's not working
Please let me know your suggestion in this case?
Thank You!
SY
Hi Pham,
Good day to you,
We have checked your shared code blocks and tried to replicate the reported issue with the ribbon component, but the methods showGroup & hideGroup works fine. Check the below shared sample for your reference.
Sample - Link
if (args.checked){ this.ribbonObj.hideTab('defaultRibbon-equation'); this.ribbonObj.hideGroup('defaultRibbon-home-clipboard'); } else { this.ribbonObj.showTab('defaultRibbon-equation'); this.ribbonObj.showGroup('defaultRibbon-home-clipboard'); } }
|
Can you please share with us the following details?
The above details will be helpful for us to further validate the reported issue and assist you better.
Regards,
Indrajith
Thank for your reply
Here is my source code for ribbon style, please help me to find any anomalies in the above code
Thank You!
SY
Pham,
Thank you for sharing your ribbon style code. We have tried to replicate the reported issue with the already shared sample, but still the functionality of methods works fine. Shared the ensured sample for your reference.
Sample - Link
In addition, we have reviewed the provided styles, and Deep Styling (::ng-deep) is a suspect that could impact the syncfusion styles:
If you still encounter similar issues, to proceed further can you please share with us the following details
Looking forward to your response.
Regards,
Indrajith