This is a migrated thread and some comments may be shown as answers.

GridBatchEditingCommand for detail grid

1 Answer 130 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Ramesh
Top achievements
Rank 1
Ramesh asked on 11 May 2015, 01:33 PM

Hi 

I am not able to read detail table oldvalues and newvalues  from the below code, i am able to read the master table cells 

 

 Protected Sub radDataEntry_BatchEditCommand(sender As Object, e As Telerik.Web.UI.GridBatchEditingEventArgs) Handles radDataEntry.BatchEditCommand
        Dim newValues As Hashtable
        Dim oldValues As Hashtable

        For Each command As GridBatchEditingCommand In e.Commands
            If (command.Type = GridBatchEditingCommandType.Update) Then
                newValues = command.NewValues
                oldValues = command.OldValues
                '  Dim ID As String = newValues("ID").ToString()
            End If
        Next
       
    End Sub

 

Please let me know how to get the detail table cell values using GridBatchEditingCommand , i have attached the structure of the grid where i am not able to read  9999 whereas i am able to read 8888

 

Thanks

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 14 May 2015, 10:36 AM
Hello Ramesh,

I believe you've already found out the solution as stated in the following thread:
http://www.telerik.com/forums/detail-grid-batch-edit

Regards,
Eyup
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Grid
Asked by
Ramesh
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or