我需要根据某些条件将column
的特定值绑定到另一个column
。
我的网格中有四个columns
,因此根据第二个column
的值,我需要将第三列的值绑定到相同或第四个column
(即在Ultragrid
中的任何一个。
我可以在哪个场合写这个?怎么做?
答案 0 :(得分:1)
使用UltraGrid
试试这个:
//代码
Private Sub grdReport_InitializeRow(sender As Object, e As InitializeRowEventArgs) Handles grdReport.InitializeRow
If (e.Row.Cells("column1").Value Is "") Then
//Do ur stuff here
End If
End Sub