Hi,
I have added cell click event for the radgrid as below under ItemDatabound event of the grid.
I have added cell click event for the radgrid as below under ItemDatabound event of the grid.
If
TypeOf e.Item Is GridDataItem Then
For Each col As GridColumn In radgrdClaimsName.MasterTableView.RenderColumns
Dim dataItem As GridDataItem = DirectCast(e.Item, GridDataItem)
dataItem(col.UniqueName).Attributes.Add(
"onclick", ("RowSelectedCarrierName('" & dataItem.ItemIndex & "','" & col.OrderIndex & "');"))
Next
End If
I have Totals as my grid's last column. I want to restrict the user by clicking on this particular column i.e Totals column.
What should I modify in my above code so that I can restrict the user by selecting the cell of Total column?
Thanks in advance,
Medac