Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Major bug in moving columns in virtual mode

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

Major bug in moving columns in virtual mode
Link Posted: 20-Sep-2006 08:04
Hello,
I am using virtual mode and have turned on column moving.  
When columns are moved, they end up with the wrong data. They are getting another column's data - not their own.

I am retrieving/setting data solely by column name (not index). So the fact that the column index has changed should be irrelevant.

I am including the source I am using:

[VB.Net]
Imports NineRays.Windows.Forms
Imports NineRays.Windows
Imports NineRays.Windows.Forms.Data
Imports NineRays.Windows.Forms.Grids

Public Class Form1

    Dim dataCtl As New DataTable

    Private Function grid_VirtualMode_GetCount(ByVal sender As NineRays.Windows.Forms.Data.NodeBase) As Integer Handles grid.VirtualMode_GetCount
        Return dataCtl.Rows.Count
    End Function

    Private Function grid_VirtualMode_GetNodeCellValue(ByVal sender As Object, ByVal node As NineRays.Windows.Forms.Data.NodeBase, ByVal index As Integer) As Object Handles grid.VirtualMode_GetNodeCellValue
        Return dataCtl.Rows(node.Index)(grid.Columns.Items(index).FieldName)
    End Function

    Private Function grid_VirtualMode_HasChildren(ByVal sender As Object, ByVal node As NineRays.Windows.Forms.Data.NodeBase) As Boolean Handles grid.VirtualMode_HasChildren
        Return False
    End Function

    Private Function grid_VirtualMode_InitNewNode(ByVal sender As Object, ByVal parent As NineRays.Windows.Forms.Data.NodeBase, ByVal index As Integer) As NineRays.Windows.Forms.Data.NodeBase Handles grid.VirtualMode_InitNewNode
        Return New TestNode(parent)
    End Function

    Private Sub grid_VirtualMode_SetNodeCellValue(ByVal sender As Object, ByVal node As NineRays.Windows.Forms.Data.NodeBase, ByVal index As Integer, ByVal value As Object) Handles grid.VirtualMode_SetNodeCellValue
        dataCtl.Rows(node.Index)(grid.Columns.Items(index).FieldName) = value
    End Sub
    Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        dataCtl.Columns.Add(\"Col1\")
        dataCtl.Columns.Add(\"Col2\")
        dataCtl.Columns.Add(\"Col3\")
        For i As Integer = 1 To 10
            dataCtl.Rows.Add(New Object() {\"Col1Value\", \"Col2Value\", \"Col3Value\"})
        Next
        grid.Columns.Items.Add(New Column(\"Col1\"))
        grid.Columns.Items.Add(New Column(\"Col2\"))
        grid.Columns.Items.Add(New Column(\"Col3\"))
        grid.Rows.Options = RowsOptions.ShowIndicators Or RowsOptions.ShowRowHeaders
        grid.Columns.Options = ColumnsOptions.Moveable Or ColumnsOptions.ShowHeaders Or ColumnsOptions.Sizable Or ColumnsOptions.Clickable
        grid.Rows.VirtualMode = True
    End Sub
End Class
Public Class TestNode
    Inherits VirtualNode

    'Property variables...

    Public Sub New(ByVal parent As NodeBase)
        MyBase.New(parent)
    End Sub
End Class
Link Posted: 21-Sep-2006 08:13
You have incorrectly use data fetching(did you saw the Virtual Grid sample), here is correct code:
[VB.Net]
Private Function grid_VirtualMode_GetNodeCellValue(ByVal sender As Object, ByVal node As NineRays.Windows.Forms.Data.NodeBase, ByVal index As Integer) As Object Handles grid.VirtualMode_GetNodeCellValue
  Dim col As Column = grid.Columns.FieldMapColumnFromIndex(index)
  Return dataCtl.Rows(node.Index)(col.FieldName)
End Function

Also: it is not necessary to use VirtualMode_HasChildren handler when this handler is return always false.
Link Posted: 22-Sep-2006 02:48
I think the issue is that it is not at all obvious what is going.  You are returning the original index of the column - even though the columns are now reordered.  I think this is very non-intuitive that you couldn't use the index in the event to just index into the columns collection.
At least from my perspective - I would never think to look for another method that can map the original column index to a name - I would assume I could use whatever index I have and use it directly into the columns collection.

Thanks for your answer.
Link Posted: 24-Sep-2006 22:53
You are returning the original index of the column - even though the columns are now reordered.

This event provides index of column in the internal FieldMap.
If we will reorder data in the each node cells'array - this take a lot of the time and decrease performance. FieldMap helps in the situations of columns reordering to point cells data to the associated with cell column.
This is standard practice in the data grids.
Link Posted: 25-Sep-2006 02:14
Yes, it would be fine to return the original index - except then I would expect the Column collection to remain in its original order. I would expect VisibleColumns to have the new order of the columns.
It just seemed very confusing to be getting the original index for the column, but there is no way to look at the grid properties to see the columns in their original order. Seemed inconsistent to me. Just a thought.
Link Posted: 26-Sep-2006 00:18
FieldMap keeps columns in its original order - using FieldMapXXX methods you can receive original order of columns, but VisibleColumns array return columns array in the current order.
FieldMap is very useful thing to fetch data from unvisible columns also.
The event model of the new major version of FlyGrid will provide more detailed info in events, and will not necessary to use FieldMap method to extract related info - all necessary info will provided in the event handlers.