We need to create Spright for end user so that they can limited files in view identity quicklink. for e.g. Only Entitlement and application. if possible please share supporting document link or sample examples.
Please share any images or screenshots, if relevant.
[Please insert images here, otherwise delete this section]
Please share any other relevant files that may be required (for example, logs).
[Please insert files here, otherwise delete this section]
Share all details about your problem, including any error messages you may have received.
[Replace this text with the problem that you are facing]
Gone through the document but not any right to allow only application and entitlement tab., if possible, can you redirect me where I can see separate right for each tab.
@pravinbharatgate To hide the options in the identity page: You need to can also write a simple plugin to inject a javascript code to hide the tabs. below is the code snippet:
if (tabPanel) {
var targetTabs = [
'policyContent',
'historyContent',
'scoreContent',
'activityContent',
'userRightsContent'
];
tabPanel.items.each(function (item) {
if (targetTabs.indexOf(item.contentEl) !== -1) {
item.tab.hide();
hiddenCount++;
}
});
Please try it out and let me know if you need any further help.
Note: Found a fix? Help the community by marking the comment as solution. Feel free to react(, , etc.) with an emoji to show your appreciation or message me directly if your problem requires a deeper dive.