How to find the specific word in kendo UI grid in MVC

padh

I have Kendo UI Grid in MVC4 Project. After data binding, i want to check the each and every cells, whether it contains specific words like "AA" or "BB". If words found, need to change the color of that row.

OnaBai

You can use jQuery and build a selector as:

var grid = $("#grid").data("kendoGrid");
// Color cell containing AA
grid.tbody
    .find(":contains('AA')")
    .closest("td")
    .css("background", "red");

// Color rows containing BB
grid.tbody
    .find(":contains('BB')")
    .closest("tr")
    .css("background", "red");

See it action here : http://jsfiddle.net/OnaBai/Abv97/1/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Sorting on Kendo UI MVC Grid

From Dev

Sorting on Kendo UI MVC Grid

From Dev

Kendo UI MVC Grid Not Updating

From Dev

How to reuse and parameter a Kendo UI grid EditorTemplate (using ASP MVC)?

From Dev

How to change the default filter operator in kendo ui grid mvc

From Dev

How to filter a Kendo UI MVC grid using a dropdown list

From Dev

How to transpose rows and columns in a Kendo UI grid in MVC application?

From Dev

How to change the default filter operator in kendo ui grid mvc

From Dev

How to change the background of a cell dynamically in a Kendo MVC UI Grid?

From Dev

In Kendo UI MVC Grid how do i add a Kendo Upload to each row?

From Dev

Kendo UI grid, search box in toolbar in mvc

From Dev

Kendo UI MVC Grid row selecting

From Dev

Kendo MVC UI sort grid using DropDownList

From Dev

Kendo UI Mvc Grid Title template

From Dev

Using Kendo MultiSelect with Kendo UI Grid in ASP.NET MVC

From Dev

Kendo UI MVC Grid with Kendo Window - 500 error

From Dev

Kendo UI Grid Inline - Insert new row at a specific position on the grid

From Dev

How do you manually sort a Kendo UI Grid in ASP MVC page?

From Dev

How to resolve issues with CRUD Operations in an ASP.NET MVC Kendo UI Grid

From Dev

How to send "this" as a function parameter in a client template of a bound column in an mvc kendo ui grid?

From Dev

How to custom tooltip such as contains some button in grid's cell tooltip in Kendo UI MVC?

From Dev

How to set default value for any field of a ViewModel using Kendo UI Grid and ASP.NET MVC?

From Dev

How to bind a Kendo UI Grid to a collection of my model in an editor template using MVC Razor

From Dev

How to customize Kendo UI grid delete confirmation dialog using ASP.NET MVC wrappers?

From Dev

How to custom tooltip such as contains some button in grid's cell tooltip in Kendo UI MVC?

From Dev

Kendo-UI Grid (w/ MVC Wrappers) : How do I create a button that navigates to details page

From Dev

How to update and reload the datasource of a Kendo UI MVC grid from clientside upon search

From Dev

How to set kendo UI grid width

From Dev

How to hide the grid header kendo ui?

Related Related

  1. 1

    Sorting on Kendo UI MVC Grid

  2. 2

    Sorting on Kendo UI MVC Grid

  3. 3

    Kendo UI MVC Grid Not Updating

  4. 4

    How to reuse and parameter a Kendo UI grid EditorTemplate (using ASP MVC)?

  5. 5

    How to change the default filter operator in kendo ui grid mvc

  6. 6

    How to filter a Kendo UI MVC grid using a dropdown list

  7. 7

    How to transpose rows and columns in a Kendo UI grid in MVC application?

  8. 8

    How to change the default filter operator in kendo ui grid mvc

  9. 9

    How to change the background of a cell dynamically in a Kendo MVC UI Grid?

  10. 10

    In Kendo UI MVC Grid how do i add a Kendo Upload to each row?

  11. 11

    Kendo UI grid, search box in toolbar in mvc

  12. 12

    Kendo UI MVC Grid row selecting

  13. 13

    Kendo MVC UI sort grid using DropDownList

  14. 14

    Kendo UI Mvc Grid Title template

  15. 15

    Using Kendo MultiSelect with Kendo UI Grid in ASP.NET MVC

  16. 16

    Kendo UI MVC Grid with Kendo Window - 500 error

  17. 17

    Kendo UI Grid Inline - Insert new row at a specific position on the grid

  18. 18

    How do you manually sort a Kendo UI Grid in ASP MVC page?

  19. 19

    How to resolve issues with CRUD Operations in an ASP.NET MVC Kendo UI Grid

  20. 20

    How to send "this" as a function parameter in a client template of a bound column in an mvc kendo ui grid?

  21. 21

    How to custom tooltip such as contains some button in grid's cell tooltip in Kendo UI MVC?

  22. 22

    How to set default value for any field of a ViewModel using Kendo UI Grid and ASP.NET MVC?

  23. 23

    How to bind a Kendo UI Grid to a collection of my model in an editor template using MVC Razor

  24. 24

    How to customize Kendo UI grid delete confirmation dialog using ASP.NET MVC wrappers?

  25. 25

    How to custom tooltip such as contains some button in grid's cell tooltip in Kendo UI MVC?

  26. 26

    Kendo-UI Grid (w/ MVC Wrappers) : How do I create a button that navigates to details page

  27. 27

    How to update and reload the datasource of a Kendo UI MVC grid from clientside upon search

  28. 28

    How to set kendo UI grid width

  29. 29

    How to hide the grid header kendo ui?

HotTag

Archive