Share all details about your problem, including any error messages you may have received.
Hi all,
I have two questions pertaining to UIConfig. Please refer to above screenshots.
I have a column lastrefresh which displays the lastrefresh datetime in manage passwords page, however even though I have set up sortable=“true”, it is not sorting accurately. Am I missing any other configurations?
How do I include the search bar on the Manage Accounts page similar to what is in Manage Access/Roles page?
Regarding your first query, it appears you might be checking the wrong key in the UIConfig, based on the snapshot you shared. You should take a look at the key managePasswordLinkColConfig.
In this configuration, sortable is set to true, but sortProperty is not defined. Additionally, since this column uses a renderer, there isn’t a direct underlying property or field that can be referenced for sortProperty.
That said, you can still experiment with the managePasswordLinkColConfig key to explore potential customization options.
Hi @santhirajumunganda , the page I would like to add the search bar is under identity details > account where all accounts which belongs to an identity will be displayed. This is because in our system some identities might have hundreds of accounts and the search will be useful for them to find the account they are looking for. So would like to know how can I incorporate that?
A renderer is a client-side Javascript snippet (the value is a function name) that’s used to translate a raw value (the attribute in question) into something to show the user. It’s how the Risk Score column works in the Identity Warehouse, for example, to show the green/orange/red dots.
You can actually write your own renderers and do neat things with them!