Logged in Person presentation
This page was created by Hans.karlsen on 2018-09-19. Last edited by Edgar on 2025-08-31.
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:

