I added a GridButtonColumn at runtime
RadGrid1.Columns.Clear()
Dim objGC_Command As New Telerik.Web.UI.GridButtonColumn
objGC_Command.ButtonType = Telerik.Web.UI.GridButtonColumnType.PushButton
objGC_Command.CommandName = "Select"
objGC_Command.UniqueName = "Select"
objGC_Command.Text = "..."
RadGrid1.Columns.Add(objGC_Command)
I handled the event triggered by pressing the button
Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
If e.CommandName = "Select" Then
...
End If
End Sub
The problem is that this event is not fired when I press the button because then HTML generated is
<input type="submit" name="ctl00$CPHMain$RadGrid1$ctl00$ctl04$ctl00" value="..." />
why?
Thanks for your attention and sorry for my English
Fabio