Summary Panel Customization

Last modified 22 Apr 2021 17:31 +02:00
EXPERIMENTAL
This feature is experimental. It means that it is not intended for production use. The feature is not finished. It is not stable. The implementation may contain bugs, the configuration may change at any moment without any warning and it may not work at all. Use at your own risk. This feature is not covered by midPoint support. In case that you are interested in supporting development of this feature, please consider purchasing midPoint Platform subscription.
Since 3.7
This functionality is available since version 3.7.

Looks like this:

summary pannel customized

Works like this:

   <adminGuiConfiguration>
       <objectDetails>
           <objectDetailsPage>
               <type>UserType</type>
               <summaryPanel>
                   <displayName>
                       <expression>
                           <script>
                               <code>'Agent ' + object.getGivenName()?.getOrig()?.take(1)</code>
                           </script>
                       </expression>
                   </displayName>
                   <organization>
                       <expression>
                           <script>
                               <code>orgs.collect({ it.getOrgType().join(':') + ':' + it.getName().getOrig() }).join(', ')</code>
                           </script>
                       </expression>
                   </organization>
               </summaryPanel>
           </objectDetailsPage>
       </objectDetails>
   </adminGuiConfiguration>
Was this page helpful?
YES NO
Thanks for your feedback