Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Switch Column.EditorStyle depending on type of row

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

Switch Column.EditorStyle depending on type of row
Link Posted: 19-Sep-2006 11:38
Hi,

I am using FlyGrid version 1.4.0.22 and have a tree grid in virtual mode. My column is using a DropDown edit style, however, for some rows, I need to *hide* the dropdown button and make it behave like a Simple textbox. How could I best achieve this?

I thought of an approach to do this, but it has a bottleneck. I can override the EditorStyle property for the Column. The property could return EditorStyle.DropDown for rows where DropDown is needed, and EditorStyle.Simple for other kind of rows. However, the problem is accessing the *current row* (I need to do this to get its other cell values to determine the type of row). There is “FocusedRow/FocusedNode” property of the Rows collection, but it is an internal property and so is not accessible from Column.EditorStyle. Questions are:
1. Is there any other way I can refer the FocusedRow or other cell values of the current row?
2. Will this approach work once I have access to FocusedRow, i.e. do the FocusedRow/FocusedNode always get set before Column.EditorStyle gets called?

Is there any other way I can achieve this, or hide the dropdown button for certain rows?

Thanks!
Hardik
Link Posted: 20-Sep-2006 09:03
You can use AutoDetectDataTypeColumnBase to create column inheritor with context dependant editor style. Just override
EditorStyle OnGetEditorStyle(NodeBase node) method to return EditorStyle dependant from passed as parameter node.
Link Posted: 20-Sep-2006 09:26
Thanks! I will try that out. Are there any implications I should be aware of for inherting from AutoDetectDataTypeColumnBase v/s. inheriting from Column class (the latter is what I am doing currently)?

One other approach I tested was to refer the Columns Collection (Column.Owner) in the Column.EditorStyle property. I can then check the value of other columns, e.g. Me.Owner.Items(0).CurrentValue. This is if the CurrentValue of columns have been updated from the current row, prior to EditorStyle property is referred for the current Column. Do you see any problems with this approach?

Thanks!
Hardik
Link Posted: 20-Sep-2006 09:34
Are there any implications I should be aware of for inherting from AutoDetectDataTypeColumnBase v/s. inheriting from Column class (the latter is what I am doing currently)?

This column type is a base class for the columns with EditorStyle provided dynamically and differs from the Column class minimally.
This is if the CurrentValue of columns have been updated from the current row, prior to EditorStyle property is referred for the current Column. Do you see any problems with this approach?

CurrentValue property refers to the selected node, in your case I just recommend you more fast method:
[c#]
public override EditorStyle OnGetEditorStyle(NodeBase node)
{
  //get the cell value from the node provided
  object value = node[this];
  //.....
}

or you can use flyGrid.Selected and code above to extract cell value associated with this column.