barteloma
barteloma

Reputation: 6865

How to find all kendo ui grid names using jquery?

I have multiple grids in my page. I want to select of grids using jquery. How can I select them?

$("how find grids?").each(function (index, element) {
       if (element) {
          
           console.log("element: " + element);
          
       }
   });

Upvotes: 0

Views: 616

Answers (1)

DontVoteMeDown
DontVoteMeDown

Reputation: 21465

Try:

$('div[data-role="grid"]')

or

$('div.k-grid')

Upvotes: 1

Related Questions