﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - navigation</title><link>http://www.intersoftsolutions.com/Community/Tags/navigation/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Core no work equal in Android and iPhone</title><link>http://www.intersoftsolutions.com/Community/Tags/navigation/</link><pubDate>Wed, 06 May 2015 08:51:46 GMT</pubDate><dc:creator>cristobal@sbsoftware.es</dc:creator><category>navigation</category><category>android</category><category>Crosslight</category><category>Core</category><category>drawer</category><category>iphone</category><description>&lt;p&gt;I've developed my first app in Android using Crosslight.&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;One of the activities of my app is a "DrawerViewModelBase". It has a "ListViewModelBase" in the center, and a "EditorViewModelBase" in the right side. The "EditorViewModelBase" is a Form.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;		public ValesDrawerViewModel()		{			this.CenterViewModel = new ValeListViewModel();
			this.RightViewModel = new FiltroEditorViewModel();
		}&lt;/pre&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Right side is a filter that, when it is closed, updates the items of the center. To control this event, in Close method of "DrawerViewModelBase", I get new items in the CenterViewModel.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;		public override void Close()
		{
			if (this.OpenedDrawer == DrawerSide.Right)
			{
				GetValesAsync();
			}
			base.Close();
		}
		protected virtual async void GetValesAsync()
		{
			...
			((ValeListViewModel)this.CenterViewModel).Items = selectResult;
			...
		}&lt;/pre&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;In Android is OK, but in iPhone, when I Close the right side, it doesn't enter in Close method and it doesn't update items.&lt;/p&gt;&lt;p&gt;How can I solve this problem?&lt;/p&gt;&lt;p&gt;How can I send data between CenterViewModel and RightViewModel?&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;img src="https://intersoftpt.com/Community/Attachments/14427/Filtro.png" style="border:none; width:499px; height:829px;" alt=""&gt; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;img src="https://intersoftpt.com/Community/Attachments/14427/Cargando.png" style="font-size: 10pt; border: none;"&gt;&lt;/p&gt;</description></item><item><title>How to use navigation when an UICarouselView item is selected</title><link>http://www.intersoftsolutions.com/Community/Tags/navigation/</link><pubDate>Wed, 31 Dec 2014 07:40:41 GMT</pubDate><dc:creator>hongliyu2002</dc:creator><category>navigation</category><category>UICarouselView</category><description>&lt;p&gt;Can you please tell me how to use navigation when an&amp;nbsp;UICarouselView cell item is&amp;nbsp;&lt;span style="font-size: 10pt;"&gt;selected. I found this component supports DetailNavigationTarget property, but I don't know how to use it.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;On the other hand, the OnSelectItemChanged method in the ListViewModelBase also cannot be used, because when the EnableSlideShow is set to on, the SelectedIndex will be changed every 3 seconds. Everytime it will trigger the&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;OnSelectItemChanged method, I cannot write NavigationService code in this section.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>[VIDEO] Understanding Screen Navigation in Crosslight – 1</title><link>http://www.intersoftsolutions.com/Community/Tags/navigation/</link><pubDate>Thu, 23 Jan 2014 05:35:51 GMT</pubDate><dc:creator>martin@intersoftpt.com</dc:creator><category>navigation</category><category>android</category><category>Mobile</category><category>Crosslight</category><category>iOS</category><category>Windows 8</category><category>Windows Phone 8</category><category>screen</category><description>&lt;p&gt;Dear valued customers,&lt;/p&gt;
&lt;p&gt;We recently added a new tutorial video about understanding screen navigation in Crosslight. Navigation is a very complex subject in mobile apps development and it requires deep understanding to learn how to implement simple navigation in individual platform such as Android. Our development team has successfully combined all those difficult works into a single API, so that you only need to focus on business processes, user experience and visual aspects of your app.&lt;/p&gt;
&lt;p&gt;Read the &lt;a href="http://intersoftpt.wordpress.com/2014/01/17/video-tutorials-understanding-screen-navigation-in-crosslight-1/" target="_blank"&gt;full blogpost&lt;/a&gt; to learn and watch the video tutoial on how navigation works in Crosslight.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Martin Lie&lt;br /&gt;Account Representative&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>UXListBox navigation</title><link>http://www.intersoftsolutions.com/Community/Tags/navigation/</link><pubDate>Tue, 09 Nov 2010 01:16:53 GMT</pubDate><dc:creator>TerryH</dc:creator><category>navigation</category><category>UXListBox</category><description>&lt;p&gt;I'm currently evaluating the ClientUI suite and have a question about UXListBox, in the example ClientUI_Business_Application on the Customers page there is a UXListBox with a datatemplate that has a UXNavigationButton, when a user clicks on the button the details are displayed to the right of the listbox. I would like to do something similar, I would like to populate the list with two colums of data, when the user clicks on one of the listbox items, the details would be displayed, I don't want to use a UXNavigationButton. How can I get this done ?&lt;/p&gt;
&lt;p&gt;I'm thinking that the listbox SelectionChanged event might be one way but I don't know how to get the same functionalty that UXNavigationButton provides with in the event.&lt;/p&gt;</description></item><item><title>silverlight navigation documentation </title><link>http://www.intersoftsolutions.com/Community/Tags/navigation/</link><pubDate>Thu, 14 Oct 2010 05:29:03 GMT</pubDate><dc:creator>zen8019</dc:creator><category>ClientUI</category><category>navigation</category><description>&lt;p&gt;Hi &lt;/p&gt;
&lt;p&gt;I have read your Client UI Parts 1 to 7 - very good they are as an overview.  Where can I get more in depth documentation/tutorials covering the topics covererd by these articles.&lt;/p&gt;
&lt;p&gt;For instance datasources for grid, formatting grids etc&lt;/p&gt;
&lt;p&gt;Navigation and so on.&lt;/p&gt;
&lt;p&gt;Also the showcase examples (which cover most/all of your Silverlight control) - where is the source code for these examples as this would be a good start - I know you have some template/example applications but these do not cover grids for instance.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I currently use DevExpress and all the above is easily and readily available.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Richard&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Deep Navigation</title><link>http://www.intersoftsolutions.com/Community/Tags/navigation/</link><pubDate>Thu, 29 Jul 2010 19:21:32 GMT</pubDate><dc:creator>aibo</dc:creator><category>navigation</category><description>&lt;p&gt;Hi guys,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Sorry that disturbing you (I know what it means to have a delivery in few weeks :) but I need your help.&lt;/p&gt;
&lt;p&gt;I'm doing a demo for management and if it'll be done isuccessfully then we'll be you happy customers (and I'll be your happy developer, as I really like your controls suite). The key byuing feature is navigation. We have a 3 levels of navigation.&lt;/p&gt;
&lt;p&gt;-&amp;gt;Module&lt;/p&gt;
&lt;p&gt;-&amp;gt; -&amp;gt; Section&lt;/p&gt;
&lt;p&gt;-&amp;gt; -&amp;gt; -&amp;gt; Section Item&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I can't figure out from sample app how to implement it. It uses some hakish query string stuff and I dont get how to proceed to innermost frame.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;As I understand this can (and should be easily) achieved solely with XAML configuration (UriMapping). So basically nested page should be ableto pick up what parent page has passed and pass it further until last nested frame finish it.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;So I have 3 pages and each contains a frame:&lt;/p&gt;
&lt;p&gt;1. Main page - main frame loads module pages&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;2. Module page - module frame load section pages&lt;/p&gt;
&lt;p&gt;3. Section page - section page load section item pages&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Paths are:&lt;/p&gt;
&lt;p&gt;/Module&lt;/p&gt;
&lt;p style=""&gt;/Module/Section&lt;/p&gt;
&lt;p style=""&gt;/Module/Section/Item&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Please send sample on my email or just attach here.&lt;/p&gt;
&lt;p&gt;MANY thanks!&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>