<?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 : Tree view icon not appearing for grandchild rows</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Tree view icon not appearing for grandchild rows]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 02 May 2026 00:47:52 +0000</pubDate>
  <lastBuildDate>Thu, 30 Apr 2015 09:50:44 +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=22584</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[Tree view icon not appearing for grandchild rows : Well this was dumb. I ended up...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=22584&amp;PID=73354&amp;title=tree-view-icon-not-appearing-for-grandchild-rows#73354</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8105">paulm_wlc</a><br /><strong>Subject:</strong> 22584<br /><strong>Posted:</strong> 30 April 2015 at 9:50am<br /><br />Well this was dumb. I ended up setting up a really simplified version of the form in my app and everything worked great. After going back and forth between the sample form and my real form I suddenly realized my +/- column on my real form wasn't wide enough to display the +/- box for the grandchild; it was there I just couldn't see it. Duh. Widening that column fixed the issue.]]>
   </description>
   <pubDate>Thu, 30 Apr 2015 09:50:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=22584&amp;PID=73354&amp;title=tree-view-icon-not-appearing-for-grandchild-rows#73354</guid>
  </item> 
  <item>
   <title><![CDATA[Tree view icon not appearing for grandchild rows : I have a grid that has a row,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=22584&amp;PID=73341&amp;title=tree-view-icon-not-appearing-for-grandchild-rows#73341</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8105">paulm_wlc</a><br /><strong>Subject:</strong> 22584<br /><strong>Posted:</strong> 28 April 2015 at 9:35am<br /><br /> I have a grid that has a row, plus child rows. The first column is hidden and contains an ID, the second column contains a checkbox, and the third column is the expand/collapse icon for child records. There are additional columns for data. This works as expected.&nbsp;<div><br></div><div>Now I need to add another child level (ex. Parent/Child/Grandchild). I can add the rows to the child row, but they don't appear. I can set the Expanded property of the child row and then the grandchild records appear. However, in both cases I don't see the expand/collapse option that I see for the first parent/child set.<div><br></div><div>The (pseudo) code basically looks like this:</div><div><br></div><div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* ID column</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">col = &nbsp;Columns.Add(0, "", 0, False)</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">col.Visible = False</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Checkbox column</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">col = Columns.Add(1, "", 20, False)</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">col.Tag = "check"</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Tree +/- column</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">col = Columns.Add(2, "", 20, False)</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">col.Tag = "tree"</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">col.TreeColumn = True</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* The rest of the columns are added here</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* First-level row<br></font><div><font face="Courier New, Courier, mono">rec = Records.Add()</font></div></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* ID row item</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">rec.AddItem(0)</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Checkbox row item</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">item = rec.AddItem("")</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">item.HasCheckBox = True</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Placeholder for +/-</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">item = Rec.AddItem("")</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* The rest of the row items are added here</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Add children</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">recsub = rec.Childs.Add()</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">recsub.AddItem(0)</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Additional row items added here</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Add grandchild</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">gc = recsub.Childs.Add()</font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono">* Additional data here</font></div></div></div><div style="line-height: 16.7999992370605px;"><font face="Courier New, Courier, mono"><br></font></div><div style="line-height: 16.7999992370605px;"><span style="line-height: 16.7999992370605px;">Any ideas where I might be going wrong? Is there some additional property I need to set somewhere?</span></div>]]>
   </description>
   <pubDate>Tue, 28 Apr 2015 09:35:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=22584&amp;PID=73341&amp;title=tree-view-icon-not-appearing-for-grandchild-rows#73341</guid>
  </item> 
 </channel>
</rss>