Welcome Guest Search | Active Topics | Members | Log In | Register

Debugging the GridViewTree Options
JBrooks
Posted: Sunday, July 12, 2009 7:40:24 PM
Rank: Administration
Groups: Administration

Joined: 8/28/2007
Posts: 34
We now expose the internal DataTable called TreeTable and the internal DataView called dvTree. So to debug I can bind these to a simple GridView. For example if I had the GridViewTree called gvtFiles and wanted to debug it, I could add a GridView to my page, name it gvDebug and bind it like so:

this.gvDebug.DataSource = gvtFiles.dvTree;
this.gvDebug.DataBind();

or using the table
this.gvDebug.DataSource = gvtFiles.TreeTable;
this.gvDebug.DataBind();
Jim
Users browsing this topic
Guest


Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Main Forum RSS : RSS

Powered by Yet Another Forum.net version 1.9.1.8 (NET v2.0) - 3/29/2008
Copyright © 2003-2008 Yet Another Forum.net. All rights reserved.
This page was generated in 0.019 seconds.