how to get cell click event in kendo grid

GANI

My grid is

    @(Html.kendo().Grid<StudentViewModel>()
       .Columns( x=>
       {
        x.Bound( y => y.StudentId);
        x.Bound(y => y.SubjectId);
        x.Bound(y => y.Name);
      })

here when user clicks on "StudentId" or "SubjectId" cell in those columns want to show a popup, how to get the cell click event and verify that is the right column. How to get the cell click event ?

Paige

To add onto the previous answers: In your grid, add an event binding

@(Html.kendo().Grid<StudentViewModel>()
   .Columns(...)
   .Events(events => events.Change("onChange"))
  })

Then, in your javascript section, add a function like Arturo suggested:

function onChange(arg) {
    var selected = $.map(this.select(), function (item) {
        return $(item).text();
    });
}

This example from Telerik might help: http://demos.telerik.com/aspnet-mvc/grid/events

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to show € symbol in a kendo grid cell

From Dev

getting the click event in a kendo grid

From Dev

kendo grid How to get a row by field value

From Dev

Jquery Click Event not does works on Kendo Grid

From Dev

Get selected row on right mouse click in Kendo Grid

From Dev

Kendo UI, How to manually call validate() on kendo grid cell

From Dev

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

From Dev

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

From Dev

how to focus next cell in kendo grid by enter

From Dev

How do I display Kendo Grid inside Kendo Grid cell?

From Dev

how to get Kendo grid row selection

From Dev

Kendo Grid keydown event

From Dev

Kendo Grid: how to get the selected item from a Combobox cell template when using with Angular

From Dev

How to undo preventdefault in save event in Kendo Grid

From Dev

Kendo Grid Filterable cell

From Dev

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

From Dev

How to get DevExpress GridControl cell single click event in wpf?

From Dev

How do i get hidden value from Kendo grid with onSave event

From Dev

Get selected row on right mouse click in Kendo Grid

From Dev

Kendo UI, How to manually call validate() on kendo grid cell

From Dev

how to focus next cell in kendo grid by enter

From Dev

how to get the Selected item in dropdownlist while click the Edit button in inline kendo grid in asp

From Dev

Kendo Grid keydown event

From Dev

How to mark Kendo Grid's cell as edited?

From Dev

Kendo Grid Filterable cell

From Dev

how do i convert datagridview cell click event to DevExpress Grid Control

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 a kendo grid on a kendo template

From Dev

Clickable Cell in Kendo Grid

Related Related

  1. 1

    How to show € symbol in a kendo grid cell

  2. 2

    getting the click event in a kendo grid

  3. 3

    kendo grid How to get a row by field value

  4. 4

    Jquery Click Event not does works on Kendo Grid

  5. 5

    Get selected row on right mouse click in Kendo Grid

  6. 6

    Kendo UI, How to manually call validate() on kendo grid cell

  7. 7

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

  8. 8

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

  9. 9

    how to focus next cell in kendo grid by enter

  10. 10

    How do I display Kendo Grid inside Kendo Grid cell?

  11. 11

    how to get Kendo grid row selection

  12. 12

    Kendo Grid keydown event

  13. 13

    Kendo Grid: how to get the selected item from a Combobox cell template when using with Angular

  14. 14

    How to undo preventdefault in save event in Kendo Grid

  15. 15

    Kendo Grid Filterable cell

  16. 16

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

  17. 17

    How to get DevExpress GridControl cell single click event in wpf?

  18. 18

    How do i get hidden value from Kendo grid with onSave event

  19. 19

    Get selected row on right mouse click in Kendo Grid

  20. 20

    Kendo UI, How to manually call validate() on kendo grid cell

  21. 21

    how to focus next cell in kendo grid by enter

  22. 22

    how to get the Selected item in dropdownlist while click the Edit button in inline kendo grid in asp

  23. 23

    Kendo Grid keydown event

  24. 24

    How to mark Kendo Grid's cell as edited?

  25. 25

    Kendo Grid Filterable cell

  26. 26

    how do i convert datagridview cell click event to DevExpress Grid Control

  27. 27

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

  28. 28

    How to get a kendo grid on a kendo template

  29. 29

    Clickable Cell in Kendo Grid

HotTag

Archive