Kendo grid - How to get the row details on RowSelected?

KeenUser

As part of Kendo grid upgrade, some of my old code seems to be not working due to change in implementation

I have used events.Change to trigger a row click event(Sample code below)

@(Html.Kendo().Grid(Model.BankSearchList).Name("Grid")
                                .Events(events =>
                                {
                                    events.Change("onRowSelected");
                                    events.DataBound("onGrindBound");
                                })

In my onRowSelected(e) method, I was accessing key column member using

e.row.cells[0].innerHTML

e.row is undefined now. What is the right way to use now? Using events.Change for row selected functionality the right way to do so?

Dave

here is reference on how to get selected row detail jsfiddle . click on row to get its detail.

var gview = $("#grid").data("kendoGrid");
//Getting selected item
var selectedItem = gview.dataItem(gview.select());
alert(selectedItem.ShipName);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Kendo Grid Details On Row Expand

From Dev

how to get Kendo grid row selection

From Dev

kendo grid How to get a row by field value

From Dev

How get row state (selected or not) in kendo grid

From Dev

how to get Kendo grid row selection

From Dev

Kendo grid delete button passing the details of the row

From Dev

How to get the row data in kendo grid onselect in Angular JS fromat

From Dev

How to get a kendo grid on a kendo template

From Dev

Kendo UI Grid Get Row Values

From Dev

Kendo UI Grid Get Row Values

From Dev

How to Get the UID for a Row in Kendo Grid Without Using Grid.Select()

From Dev

How to get a different grid as child from a different row of another grid using Kendo detailInit function

From Dev

how to add data in a row or kendo Grid

From Dev

How to change Kendo Grid row colours

From Dev

How to remove edit row in Kendo Grid

From Dev

How to update Kendo Grid row from window

From Dev

How do I get the index and data of a selected row in a grouped Kendo grid

From Dev

How do I get the index and data of a selected row in a grouped Kendo grid

From Dev

How to get the first row corresponding cell value if i change the other rows cell value in kendo child grid

From Dev

how to get cell click event in kendo grid

From Dev

How to get the value of a checkbox in a Kendo UI Grid?

From Dev

How to get checked rows from kendo grid?

From Dev

How to get Kendo grid to color currency

From Dev

How to get kendo grid filed value?

From Dev

How to get Kendo Dropdown selected should fill Kendo grid

From Dev

Get specific column when Kendo Grid row is selected

From Dev

Get selected row on right mouse click in Kendo Grid

From Dev

Kendo Grid: get all data from row with checked radio button

From Dev

Get selected row on right mouse click in Kendo Grid

Related Related

  1. 1

    Kendo Grid Details On Row Expand

  2. 2

    how to get Kendo grid row selection

  3. 3

    kendo grid How to get a row by field value

  4. 4

    How get row state (selected or not) in kendo grid

  5. 5

    how to get Kendo grid row selection

  6. 6

    Kendo grid delete button passing the details of the row

  7. 7

    How to get the row data in kendo grid onselect in Angular JS fromat

  8. 8

    How to get a kendo grid on a kendo template

  9. 9

    Kendo UI Grid Get Row Values

  10. 10

    Kendo UI Grid Get Row Values

  11. 11

    How to Get the UID for a Row in Kendo Grid Without Using Grid.Select()

  12. 12

    How to get a different grid as child from a different row of another grid using Kendo detailInit function

  13. 13

    how to add data in a row or kendo Grid

  14. 14

    How to change Kendo Grid row colours

  15. 15

    How to remove edit row in Kendo Grid

  16. 16

    How to update Kendo Grid row from window

  17. 17

    How do I get the index and data of a selected row in a grouped Kendo grid

  18. 18

    How do I get the index and data of a selected row in a grouped Kendo grid

  19. 19

    How to get the first row corresponding cell value if i change the other rows cell value in kendo child grid

  20. 20

    how to get cell click event in kendo grid

  21. 21

    How to get the value of a checkbox in a Kendo UI Grid?

  22. 22

    How to get checked rows from kendo grid?

  23. 23

    How to get Kendo grid to color currency

  24. 24

    How to get kendo grid filed value?

  25. 25

    How to get Kendo Dropdown selected should fill Kendo grid

  26. 26

    Get specific column when Kendo Grid row is selected

  27. 27

    Get selected row on right mouse click in Kendo Grid

  28. 28

    Kendo Grid: get all data from row with checked radio button

  29. 29

    Get selected row on right mouse click in Kendo Grid

HotTag

Archive