MobileViewEventBuilder
Methods
AfterShow(System.String)
Fires after the mobile View becomes visible. If the view is displayed with transition, the event is triggered after the transition is complete.
For more information see AfterShow event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the afterShow event.
BeforeHide(System.String)
Fires before the mobile View becomes hidden.
For more information see BeforeHide event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the beforeHide event.
BeforeShow(System.String)
Fires before the mobile View becomes visible. The event can be prevented by calling the preventDefault method of the event parameter, in case a redirection should happen.
For more information see BeforeShow event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the beforeShow event.
Hide(System.String)
Fires when the mobile View becomes hidden.
For more information see Hide event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the hide event.
Init(System.String)
Fires after the mobile View and its child widgets are initialized.
For more information see Init event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the init event.
Show(System.String)
Fires when the mobile View becomes visible.
For more information see Show event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the show event.
TransitionStart(System.String)
Fires when the mobile view transition starts.
For more information see TransitionStart event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the transitionStart event.
TransitionEnd(System.String)
Fires after the mobile view transition container has its k-fx-end class set. Setting CSS properties to the view at the event handler will animate them.
For more information see TransitionEnd event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the transitionEnd event.