<?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="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Tab behaviour</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Property Grid : Tab behaviour]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 19 Apr 2026 10:42:41 +0000</pubDate>
  <lastBuildDate>Fri, 07 Mar 2008 07:28:58 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=7578</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Tab behaviour : Hi; If someone is interrested...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31996&amp;title=tab-behaviour#31996</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 07 March 2008 at 7:28am<br /><br />Hi;<DIV>If someone is interrested in this. I got informed that the behaviour requested will be contained in the next release. </DIV>]]>
   </description>
   <pubDate>Fri, 07 Mar 2008 07:28:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31996&amp;title=tab-behaviour#31996</guid>
  </item> 
  <item>
   <title><![CDATA[Tab behaviour : Hi Barto; Thanks for your suggestions....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31688&amp;title=tab-behaviour#31688</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 27 February 2008 at 5:25pm<br /><br /><P>Hi Barto;</P><P>Thanks for your suggestions. In my case this is to restrictive because it depends on the edit control to be activated to navigate from item key to item key. Additional, in our case we have several items that do not have CXTPPropertyGridInplaceEdit derived edit controls. This would result in code duplication or multiple inheritance.</P><P>So I have to look for another solution to get the required results.</P>]]>
   </description>
   <pubDate>Wed, 27 Feb 2008 17:25:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31688&amp;title=tab-behaviour#31688</guid>
  </item> 
  <item>
   <title><![CDATA[Tab behaviour : I did something like this to move...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31656&amp;title=tab-behaviour#31656</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1011">Barto</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 27 February 2008 at 10:30am<br /><br />I did something like this to move the focus to the next item upon pressing RETURN: <DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td><pre class="BBcode"></DIV><DIV>void CXTPPropertyGridInplaceEdit2::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) <BR>{<BR>&nbsp;// on ENTER automatically go to next row and activate edit</DIV><DIV>&nbsp;CXTPPropertyGridItem* pItem = GetItem();</DIV><DIV>&nbsp;if(nChar == VK_RETURN &amp;&amp; pItem &amp;&amp; pItem-&gt;GetGrid()) {<BR>&nbsp;&nbsp;CXTPPropertyGridView* pGrid = pItem-&gt;GetGrid();<BR>&nbsp;&nbsp;int nIndex = pItem-&gt;GetIndex();<BR>&nbsp;&nbsp;if (nIndex &lt; pGrid-&gt;GetCount() - 1) {<BR>&nbsp;&nbsp;&nbsp;if(pGrid-&gt;GetItem(nIndex+1)-&gt;IsCategory())<BR>&nbsp;&nbsp;&nbsp;&nbsp;nIndex++;</DIV><DIV>&nbsp;&nbsp;&nbsp;if (nIndex &lt; pGrid-&gt;GetCount() - 1) {<BR>&nbsp;&nbsp;&nbsp;&nbsp;pGrid-&gt;SetFocus();<BR>&nbsp;&nbsp;&nbsp;&nbsp;pGrid-&gt;SetCurSel(nIndex+1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;pGrid-&gt;OnSelectionChanged();<BR>&nbsp;&nbsp;&nbsp;&nbsp;pItem = pGrid-&gt;GetItem(nIndex+1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;pItem-&gt;OnSelect();<BR>&nbsp;&nbsp;&nbsp;&nbsp;pItem-&gt;SetFocusToInplaceControl();<BR>&nbsp;&nbsp;&nbsp;&nbsp;return;<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;}<BR>&nbsp;}</DIV><DIV>&nbsp;<BR>&nbsp;CXTPPropertyGridInplaceEdit::OnChar(nChar, nRepCnt, nFlags);<BR>}<BR></pre></td></tr></table></DIV><DIV>&nbsp;</DIV><DIV>this is code for XTP 9.81, dunno if it still works...</DIV>]]>
   </description>
   <pubDate>Wed, 27 Feb 2008 10:30:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31656&amp;title=tab-behaviour#31656</guid>
  </item> 
  <item>
   <title><![CDATA[Tab behaviour : Hello Oleg;  I need your help,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31589&amp;title=tab-behaviour#31589</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 25 February 2008 at 3:30pm<br /><br />Hello Oleg;<DIV>&nbsp;</DIV><DIV>I need your help, how to Overwrite OnNavigate to get the results Stefan mentioned in his previous post.</DIV><DIV>Which part of OnNavigate has to be changed to tab through key1 -&gt; key 2 -&gt; key 3 ...</DIV><DIV>&nbsp;</DIV><DIV>Thanks in advance</DIV>]]>
   </description>
   <pubDate>Mon, 25 Feb 2008 15:30:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=31589&amp;title=tab-behaviour#31589</guid>
  </item> 
  <item>
   <title><![CDATA[Tab behaviour : Hello, Override  void CXTPPr...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24413&amp;title=tab-behaviour#24413</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 12 July 2007 at 1:30am<br /><br />Hello,<DIV>Override </DIV><DIV>void CXTPPropertyGrid::OnNavigate(XTPPropertyGridUI nUIElement, BOOL bForward, CXTPPropertyGridItem* pItem) method.<BR></DIV>]]>
   </description>
   <pubDate>Thu, 12 Jul 2007 01:30:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24413&amp;title=tab-behaviour#24413</guid>
  </item> 
  <item>
   <title><![CDATA[Tab behaviour : Hi Oleg,thank you for the fast...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24388&amp;title=tab-behaviour#24388</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3079">Osiris</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 11 July 2007 at 8:36am<br /><br />Hi Oleg,<br><br>thank you for the fast response!<br><br>But is there a way to prevent the key portion of an item (left part) from getting the focus? I want to step via the tab key through the item values only (value1-&gt;value2-&gt;value3 instead of value1-&gt;key2-&gt;value2-&gt;key3-&gt;value3).<br><br>Thanks in advance<br>Stefan<br>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 08:36:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24388&amp;title=tab-behaviour#24388</guid>
  </item> 
  <item>
   <title><![CDATA[Tab behaviour : Hello,  You can call m_wndPr...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24384&amp;title=tab-behaviour#24384</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 11 July 2007 at 5:36am<br /><br />Hello,<DIV>&nbsp;</DIV><DIV>You can call m_wndPropertyGrid.NavigateItems(TRUE); to allow tab all items.</DIV>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 05:36:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24384&amp;title=tab-behaviour#24384</guid>
  </item> 
  <item>
   <title><![CDATA[Tab behaviour : Hello,I want to implement the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24381&amp;title=tab-behaviour#24381</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3079">Osiris</a><br /><strong>Subject:</strong> 7578<br /><strong>Posted:</strong> 11 July 2007 at 4:40am<br /><br />Hello,<br><br>I want to implement the following behaviour for a property grid. After a value has been altered via keyboard input and the user hits the tab key the focus shall be set to the next property item and its content shall be selected automaticaly, so that the value is overwritten as soon as a key is pressed.<br><br>Does the Xtreme PropertyGrid already have this behaviour or do I have to implement it myself? If second, how would I do that (can I catch the TabPressed event and set the focus tio the next item)?<br><br>Thanks<br>Stefan<br>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 04:40:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7578&amp;PID=24381&amp;title=tab-behaviour#24381</guid>
  </item> 
 </channel>
</rss>