Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Populating a node...

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Populating a node...
Link Posted: 04-Oct-2006 10:21
I'm figuring this must be a bug of some sort.  I'm wanting to add a new node to my grid (which has three columns named:  colName, colVisible, and colButton.

First I instantiate a node:
Node node = new Node();

Next I add the node to the rows collection:
flyGrid.Rows.Items.Add(node);

Last I try the three following segments separately from one another:
node[\"Name\"] = \"Name\";
node[\"Visible\"] = true;

node[colName] = \"Name\";
node[colVisible] = true;

node[0] = \"Name\";
node[1] = true;

The end result each time I try one of the above three methods to get data into the node is the value \"true\" in my \"Name\" column.  I realize that I can create a new row using the notation below and it will work just fine.  What I don't understand is why you guys don't fix this or completely take the feature away from the user.  I've been using flygrid for six months and this has never worked.  I know it seems trite but I hate having to do the following:
Node node = new Node(new object[]{\"Name\", true, null});

Am I missing something or is this a major bug?

Corey
Link Posted: 05-Oct-2006 00:12
To solve your problem use following code:
Node node = new Node(new object[]{});

or

//to prefill cell values with null values
Node node = new Node(new object[flyGrid.Columns.Items.Count]);

instead of:
Node node = new Node();

The default(empty) constructor is used in conjuction with initialization code:
Node node = new Node();
node.Value = (new object[]{\"Name\", true, null};

if you'll try to set some cell value on node created with default constructor, node will set node.Value to the value of cell, as node with empty node.Value (non-array or null value).

By the way, the following construction:
Node node = new Node(new object[]{\"Name\", true, null});

is the more effective and fast than
Node node = new Node(new object[]{});
node[\"first\"] = \"Name\";
node[\"second\"] = true;

or

node[0] = \"Name\";
node[1] = true;

or

node[firstCol] = \"Name\";
node[secondCol] = true;
Link Posted: 05-Oct-2006 08:23
@ninerays,

I would assume that a node and row are the same? If so, how would i do this exact same procedure in VB.net?

( i want to manually add rows, that have several columns) to my flygrid.)via code.


thanks
GK
Link Posted: 05-Oct-2006 08:35
[VB]
Private Sub AddNode(ByVal rows as Rows, int index)
  Dim cellValues as Object() = new Object(){index, \"Second\", true}
  Dim node as Node = new Node(cellValues)
  rows.Items.Add(node)
End Sub

Private Sub AddNodes(ByVal flyGrid as FlyGrid, ByVal count)
  flyGrid.BeginInit();
  Try
    For i As Integer = 0 To count - 1
        AddNode(flyGrid.Rows, i)
      Next i
  Finally
    flyGrid.EndInit()
  End Try
End Sub


PS: Did you see the VB.Net FlyGrid.Net Demo code?
Link Posted: 06-Oct-2006 09:00
Excellent.  Thank you very much.