<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : Navigation problem....</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : Navigation problem....</description>
  <pubDate>Tue, 14 Apr 2026 15:04:03 -700</pubDate>
  <lastBuildDate>Thu, 02 Dec 2010 09:24:29 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=2319</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>Navigation problem.... : ... And I am preety sure there...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9295#9295</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=896" rel="nofollow">bala</a><br /><strong>Subject:</strong> 2319<br /><strong>Posted:</strong> 02-Dec-2010 at 9:24am<br /><br />... And I am preety sure there is no problem in Binding with AgDataGrid..<br><br>Somewhere Query has problem ...<br><br><br>THanks<br>]]>
   </description>
   <pubDate>Thu, 02 Dec 2010 09:24:29 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9295#9295</guid>
  </item> 
  <item>
   <title>Navigation problem.... : Hi DeniskThanks for replyBut with...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9246#9246</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=896" rel="nofollow">bala</a><br /><strong>Subject:</strong> 2319<br /><strong>Posted:</strong> 25-Nov-2010 at 10:04am<br /><br />Hi Denisk<br><br>Thanks for reply<br>But with this multi leg&nbsp; not able to achieved the resutl. I trace my result at certain<br>level query collapsing..<br>Function evaluation disabled because a previous function evaluation timed out. <br>You must continue execution to reenable function evaluation.&nbsp;&nbsp;&nbsp; IdeaBlade.EntityModel.RelatedEntityList&lt;Crmall.Entities.PESSOA_TIPO_LOJA_SHOPPING&gt;<br><br>I am getting such type of error when i debugging data..<br><br>Is there anotherway to achieved ???<br><br><br>With Best<br>]]>
   </description>
   <pubDate>Thu, 25 Nov 2010 10:04:41 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9246#9246</guid>
  </item> 
  <item>
   <title>Navigation problem.... : Hi bala;Here&amp;#039;s an example...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9197#9197</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=912" rel="nofollow">DenisK</a><br /><strong>Subject:</strong> 2319<br /><strong>Posted:</strong> 22-Nov-2010 at 11:47am<br /><br />Hi bala;<div><br></div><div>Here's an example to achieve what you want using the NorthwindIB database.</div><div><br></div><div>1. First query the related entities.</div><div><br></div><div><div>public void LoadDataGridFromIndirectlyRelatedEntity() {</div><div>&nbsp;&nbsp; &nbsp; &nbsp;Orders = new ObservableCollection&lt;Order&gt;();</div><div><br></div><div>&nbsp;&nbsp; &nbsp; &nbsp;//This is also called a multi-leg include. See&nbsp;<a href="http://drc.ideablade.com/xwiki/bin/view/&#068;ocumentati&#111;n/AddIncludeToQuery" target="_blank">http://drc.ideablade.com/xwiki/bin/view/Documentation/AddIncludeToQuery</a></div><div>&nbsp;&nbsp; &nbsp; &nbsp;var ordersQuery = _mainMgr.Orders</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;.Include(o =&gt; o.Customer)</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;.Include("OrderDetails.Product.Supplier");</div><div><br></div><div>&nbsp;&nbsp; &nbsp; &nbsp;ordersQuery.ExecuteAsync(e =&gt; {</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;e.Results.ForEach(Orders.Add);</div><div>&nbsp;&nbsp; &nbsp; &nbsp;});</div><div>&nbsp;&nbsp; &nbsp;}</div></div><div><br></div><div>2. Bind to the data grid. I'm not an expert on DevExpress AgDataGrid so I'm using the Silverlight DataGrid as an example.</div><div><br></div><div><div>&lt;sdk:DataGrid Name="OrdersGrid"&nbsp;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AutoGenerateColumns="False" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ItemsSource="{Binding Orders}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SelectionMode="Single"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Grid.Row="0"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGrid.Columns&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGridTextColumn</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Binding="{Binding OrderID}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserReorder="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserResize="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserSort="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Width="Auto" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGridTextColumn</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Binding="{Binding Customer.CompanyName}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserReorder="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserResize="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserSort="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Width="Auto" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGridTextColumn</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Header="Count of OrderDetails"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Binding="{Binding OrderDetails.Count}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserReorder="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserResize="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserSort="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Width="Auto" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/sdk:DataGrid.Columns&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/sdk:DataGrid&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGrid Name="CustomersGrid"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AutoGenerateColumns="False"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ItemsSource="{Binding ElementName=OrdersGrid, Path=SelectedItem.OrderDetails}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SelectionMode="Single"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Grid.Row="1"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGrid.Columns&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGridTextColumn</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Binding="{Binding OrderID}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserReorder="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserResize="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserSort="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Width="Auto" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGridTextColumn</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Binding="{Binding Order.ShipCity}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserReorder="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserResize="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserSort="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Width="Auto" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGridTextColumn</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Binding="{Binding Product.ProductName}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserReorder="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserResize="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserSort="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Width="Auto" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;sdk:DataGridTextColumn</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Binding="{Binding Product.Supplier.CompanyName}"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserReorder="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserResize="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CanUserSort="True"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Width="Auto" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/sdk:DataGrid.Columns&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/sdk:DataGrid&gt;</div></div><div><br></div><div>You can see here for information on how to do it using the AgDataGrid.&nbsp;</div><div><br></div><div><a href="http://www.devexpress.com/Support/Center/p/Q238939.aspx" target="_blank">http://www.devexpress.com/Support/Center/p/Q238939.aspx</a></div>]]>
   </description>
   <pubDate>Mon, 22 Nov 2010 11:47:05 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9197#9197</guid>
  </item> 
  <item>
   <title>Navigation problem.... :   HiI am try to using navigation.I...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9166#9166</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=896" rel="nofollow">bala</a><br /><strong>Subject:</strong> 2319<br /><strong>Posted:</strong> 19-Nov-2010 at 9:57am<br /><br />Hi<br>I am try to using navigation.I can get the value who has one-many relation<br>but its not possible to getting value who has many to many relation.<br>I want to navigate from xmal file. Like I am acessing value of PERFIL<br><pre style="font-family: c&#111;nsolas;"><span style="">&nbsp;</span><span style="color: blue;">&lt;</span><span style="">dxg</span><span style="color: blue;">:</span><span style="">AgDataGridColumn</span><span style="color: red;">&nbsp;FieldName</span><span style="color: blue;">=</span><span style="color: blue;">"PESSOA_TIPO_USUARIO_PERFIL.DESCRICAO"</span><span style="color: red;">&nbsp;HeaderContent</span><span style="color: blue;">=</span><span style="color: blue;">"Perfil"</span><span style="color: red;">&nbsp;MaxColumnWidth</span><span style="color: blue;">=</span><span style="color: blue;">"Infinity"<br></span><span style="color: red;">&nbsp;MinColumnWidth</span><span style="color: blue;">=</span><span style="color: blue;">"150"</span><span style="color: red;">&nbsp;SortIndex</span><span style="color: blue;">=</span><span style="color: blue;">"-1"</span><span style="color: red;">&nbsp;GroupIndex</span><span style="color: blue;">=</span><span style="color: blue;">"-1"</span><span style="color: red;">&nbsp;Visible</span><span style="color: blue;">=</span><span style="color: blue;">"True"</span><span style="color: red;">&nbsp;Width</span><span style="color: blue;">=</span><span style="color: blue;">"250"</span><span style="color: blue;">&nbsp;/&gt;</span><br></pre>same I want to acess value of others which are not in direct relation.<br>I want to get the value of NOME&nbsp; its in PESSOA_FISICA and Email its in PESSOA_EMAIL. <br>..<br><img src="uploads/896/ef.jpg" height="665" width="752" border="0" /><img src="uploads/896/grid.jpg" height="144" width="752" border="0" /><br>I am attaching my grid and EDM below.<br>Any Help.<br><span style="font-size:10px"><br /><br />Edited by bala - 22-Nov-2010 at 10:26am</span>]]>
   </description>
   <pubDate>Fri, 19 Nov 2010 09:57:39 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2319&amp;PID=9166#9166</guid>
  </item> 
 </channel>
</rss>