We have an Identity picker control in User form in FIM which needs to be displayed dynamically based on the role.
<my:Control my:Name="Control1" my:TypeName="UocListView" my:ExpandArea="true" my:Caption="Groups" my:RightsLevel="{Binding Source=rights, Path=testAttribute}">
I am trying to display the control dynamically based on the user rights
1. Created a custom attribute "testAttribute" which is of reference type.
2. Binded the attribute to User obejct .
3. Created an MPR to provide read permission only set of users as specific requestor set and All users as target request set and boolean attribute as selected specific attributes.This is created mainly for visibility of tab.
5. In RCDC, we added the property as {Binding Source=rights, Path=testAttribute} in grouping section and IISRESET .
The control is getting displayed for all the users irrespective of the rights.
Could you please let me know if I am missing anything else?
Thanks in advance