Logged in Person presentation
No edit summary
(Updated Edited template to July 12, 2025.)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The Main menu shows the logged-in user’s username (SysUser). This has now been extended so that you can show other information for the user by setting the DefaultStringRepresenation of the SysUser in the model.
<message>Write the content here to display this box</message>
The Main menu shows the logged-in user’s username (SysUser). This has now been extended so that you can show other information for the user by setting the DefaultStringRepresentation of the SysUser in the model.


If you have this:
If you have this:
Line 15: Line 16:
[[File:2018-09-18 22h57 14.png|none|thumb|397x397px]]
[[File:2018-09-18 22h57 14.png|none|thumb|397x397px]]
[[Category:WebUI]]
[[Category:WebUI]]
{{Edited|July|12|2025}}

Latest revision as of 05:51, 20 January 2025

This page was created by Hans.karlsen@mdriven.net on 2018-09-19. Last edited by Edgar on 2025-01-20.

The Main menu shows the logged-in user’s username (SysUser). This has now been extended so that you can show other information for the user by setting the DefaultStringRepresentation of the SysUser in the model.

If you have this:

if self.Person->isempty then
  self.UserName
else
  self.Person.FirstName+' '+self.Person.LastName+
  if self.Person.House->isempty then
    ''
  else
    ' i hus '+self.Person.House.Name
  endif
endif

You get this:

2018-09-18 22h57 14.png