Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Link button

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

Link button
Link Posted: 07-Mar-2007 03:50
Hi I need link button in cell. Similar to .NET link button and to be able to catch click event on it.

For example. I have gridOrders and I want one of column to be a link button 'Close' which triggers event to close order in clicked row (not necesserely selected though).

Thanks
Link Posted: 08-Mar-2007 10:08
You can emulate this functionality by using HierarchyColumn and set HierarchyColumn.HotTrack property value to true.
To handle clicks on node's text you can override Column.OnCellClick method.
Or you can use ButtonColumn, that more easy to use handle clicks.