Flexible TreeView 2.7 has been released with completelly reimplemented data binding support and bug fixes.
Please see the release notes for details.
|
1
on: August 03, 2010, 10:50:25 AM
|
||
| Started by Ruslan - Last post by Ruslan | ||
|
2
on: July 28, 2010, 03:40:10 AM
|
||
| Started by JKouba - Last post by Ruslan | ||
|
For more information please see our Knowledge Base.
|
||
|
3
on: July 27, 2010, 05:24:21 PM
|
||
| Started by JKouba - Last post by JKouba | ||
|
Thank you.
That explained it very well to me and I was able to get it working. |
||
|
4
on: July 27, 2010, 02:03:13 AM
|
||
| Started by JKouba - Last post by Ruslan | ||
|
Hi,
Every data you see in the treeview is stored in the Node class instance. The NodeWithImage class has the Image property and the Text property, derived from the Node class. These properties you`ve used in your code: Code: [Select] Cabinet = New NodeWithImage(strObjectName, My.Resources.dm_cabinet, strObjectID) Now, to add new data to display in the tree, you need to inherit your new node class from the NodeWithImage; add as many new properties as you need to display; add node controls for these new properties and bind them. For example, we`ll add the ModifyDate property with DateTime type as you need: Code: [Select] Class CabinetNode Inherits NodeWithImage Now we`ll create the NodeDateTime node control to display our new ModifyDate property in the treeview: Code: [Select] Dim dateControl As New NodeDateTime() Please note the line "dateControl.DataFieldName = "ModifyDate"" where we bind the node control to our new property. Also you need to set the ColumnId node control property to bind it to your column. And as a final stage we`ll create and attach to the treeview our new node instance and fill all properties to display: Code: [Select] Dim node As New CabinetNode() |
||
|
5
on: July 26, 2010, 07:59:20 PM
|
||
| Started by JKouba - Last post by JKouba | ||
|
I am developing in vb.net and have a lot of experience with vb6, although I am new to .net.
I am trying to create an app that is similar to an 'explorer' app but it looks into a document management system with cabinets, folders and documents. I am trying to add data columns to each node with information for that object (cabinet, folder, document). I capture the same information regardless of the object type (image, object name, owner name, modify date, version, etc). I have created a set of node controls and columns in my tree. My node is created as nodewithimage and I can get the image and the name in the tree with no problems. I'm also able to associate the appropriate node control to the appropriate column. I cannot seem to figure out, however, how to set the value of the column for each node except the image and name that is set with the node is created (e.g.): Cabinet = New NodeWithImage(strObjectName, My.Resources.dm_cabinet, strObjectID) For each node how do I set my other nodecontrol/column values? Thanks! |
||
|
6
on: July 21, 2010, 03:45:13 PM
|
||
| Started by JKouba - Last post by Ruslan | ||
|
You are welcome!
Feel free to contact us if you need further assistance. |
||
|
7
on: July 21, 2010, 03:23:17 PM
|
||
| Started by JKouba - Last post by JKouba | ||
|
Thank you! That did it.
![]() |
||
|
8
on: July 21, 2010, 03:11:05 PM
|
||
| Started by JKouba - Last post by Ruslan | ||
|
Hi,
Thank you for your interest to our product. By default every new project in VS2010 is targeted to the .NET 4.0 Client Profile which isn`t supported by Flexible TreeView. You need to change your project`s target to the .NET 4 Full or 3.5/2.0. See attachment for details. |
||
|
9
on: July 21, 2010, 02:19:08 PM
|
||
| Started by JKouba - Last post by JKouba | ||
|
I am evaluating flexibletreeview. I am writing a test program in vb.net using Visual Studio 2010. vb.net is new to me, although I have a lot of experience with VB6. I am able to add the flexibletreeview component to my form. I have added the appropriate imports statements for the flexibletreeview, but I am getting a warning that system.design (.NET 4.0) is missing and I cannot seem to add it as a reference to my project (I get a message "The system cannot find the refernece specified"). The warning message is below.
The referenced assembly "ARMSoft.FlexibleTreeView, Version=2.6.0.0, Culture=neutral, PublicKeyToken=a0f39221011ef811" could not be resolved because it has a dependency on "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project. DFC Workspace This is probably pretty basic but can you give me some ideas of what might be causing this issue? Thank you! |
||
|
10
on: July 15, 2010, 09:54:53 AM
|
||
| Started by Joan Parera - Last post by Ruslan | ||
|
Hi Joan,
Thanks for your suggestion. It is in our TODO list since v.1. After the forthcoming release we`ll include this feature in the v.Next. |
||


