<field id="rowItemSelected" type="intarray" alwaysnotify="true" alias="GridScreen.rowItemSelected"/>
m.top.observeField("rowItemSelected", "OnRowItemSelected")
' Row item selected handler
Function OnRowItemSelected()
' On select any item on home scene, show Details node and hide Grid
m.gridScreen.visible = "false"
m.detailsScreen.content = m.gridScreen.focusedContent
m.detailsScreen.setFocus(true)
m.detailsScreen.visible = "true"
End Function
"VikR0001" wrote:
Very good. So after the screen is properly instantiated, can it be displayed just by setting the "visible" property to true?
"VikR0001" wrote:
Is using the "visible" flag the most common way to reveal a screen? Or are other methods more commonly used?