Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Type

Data Type

Description

QueryString

*Input

Unicode String

QueryString to be appended to the root of the URL

Signal

*Input (Optional)

Boolean

Set to false to stop Changed event firing

...

When the user uses the history to show a page, the URLChanged event can be monitored and the URLParameters processed to detect the employee number.

     Evtroutine Handling(#List.ItemGotFocus)

...

 
#Com_owner.Activate( #Empno )
#Sys_Web.history.Add( ("Employee=&1").Substitute( #Empno ) )
Endroutine
Evtroutine Handling(#sys_web.URLChanged)
For Each(#Parameter) In(#sys_web.URLParameters)
Continue If(#Parameter.Name.Uppercase <> Employee)
#Com_owner.Activate( #Parameter.Value.uppercase)
Leave
Endfor
Endroutine


See also

All Component Classes

...