I have a RadGrid that with a that contains a GridButtonColumn defined as
This Grid has a DataKey of DelRecordID
When the row item button is Clicked
The Grid that i call to be rebound simply doesnt, If however i click the Refresh button on the Grid it rebinds as it should.
Am i missing something really obvious on this
Thanks in advance
The Grid that i call to be rebound simply doesnt, If however i click the Refresh button on the Grid it rebinds as it should.Am i missing something really obvious on this Thanks in advance
<
telerik:GridButtonColumn
ButtonType
=
"LinkButton"
UniqueName
=
"PaymentViews"
Text
=
"Payments"
CommandName
=
"AddPayment"
/>
When the row item button is Clicked
If e.CommandName = "AddPayment" Then
'If GridDeleiverables.SelectedItems.Count > 0 Then
Dim DataKey As Integer = e.Item.OwnerTableView.DataKeyValues(e.Item.ItemIndex)("DelRecordID")
Session("DeliverableID") = DataKey
GridPaymentDrawdown.Rebind()
PanelPaymentDrawdown_ModalPopupExtender.Show()
'End If
End If
Am i missing something really obvious on this
Thanks in advance