Jun
23
Written by:
Steve Gray
6/23/2009 3:56 PM
In a Janus grid, it is possible to set the COLUMNTYPE of a grid column to LINK. That will give the column a ‘link’ look and feel
In code, you would set up the event handling like this:
Private Sub GridEX1_LinkClicked(ByVal sender As Object, ByVal e As Janus.Windows.GridEX.ColumnActionEventArgs) Handles GridEX1.LinkClicked
Dim strSomeOtherColumn As String = GridEX1.GetValue("someOtherColumn")
Dim strClickedColumnKey As String = e.Column.Key
Dim strClickedColumnCaption As String = e.Column.Caption
End Sub
As always, I welcome your comments!