HTML Client Screen Navigation
-
Thursday, January 17, 2013 9:13 PM
In the Silver Light client: to navigate to another screen "in code" I use:
this.Application.ShowMyScreen();
How can I do the same thing "In Code" in LightSwitch HTML Client?
Thanks
All Replies
-
Thursday, January 17, 2013 9:34 PM
There are many blog posts and threads here that explain the differences between the navigation model in the SilverLight and the HTML client such as The LightSwitch HTML Client: An Architectural Overview (Stephen Provine) and Saving Data In The Visual Studio LightSwitch HTML Client (Including Automatic Saves) by Michael Wahington.
You can read those at your leisure, but the simple answer is:
myapp.showMyScreen(msls.BoundaryOption, screenParameter);
-Christopher DeMars
- Marked As Answer by JCMonto Friday, January 18, 2013 1:57 AM
-
Friday, January 18, 2013 1:58 AM
Christoper,
It worked perfect! thank you very much for your help.

