Managing Accessibility in the Portal

Dipu_9999
Tera Expert

This is the Idea Portal widget. We need to give everyone access to create an idea, but the views of 'My Idea' and 'All Ideas' should not be accessible or visible to specific roles. How can we handle accessibility in the portal

1 ACCEPTED SOLUTION

jcmings
Mega Sage

Is everything in your screenshot part of that one Idea Portal widget (including the yellow section from your screenshot)?

 

If the yellow section is in a separate widget, then the red section can be hidden via the Roles field on the sp_widget record. This field is hidden by default but you should be able to pull it in.

 

If the yellow section is part of the same widget, you have a few options... you can either modify the widget code to conditionally hide whatever you want (using an ng-if), or you could create a new widget with basically just the yellow portion, and only display that on the page. If you went this route, you could use the Roles field to selectively hide and show both widgets to the appropriate audiences.

View solution in original post

2 REPLIES 2

jcmings
Mega Sage

Is everything in your screenshot part of that one Idea Portal widget (including the yellow section from your screenshot)?

 

If the yellow section is in a separate widget, then the red section can be hidden via the Roles field on the sp_widget record. This field is hidden by default but you should be able to pull it in.

 

If the yellow section is part of the same widget, you have a few options... you can either modify the widget code to conditionally hide whatever you want (using an ng-if), or you could create a new widget with basically just the yellow portion, and only display that on the page. If you went this route, you could use the Roles field to selectively hide and show both widgets to the appropriate audiences.

Its working, Thank You @jcmings .