jquery - Get all kendo dropdown inside a div -


i struggling kendo dropdowns inside div.

if use

$(".k-list-container").each(function () {    var elementid = this.id.split("-")[0];    var cb = $("#" + elementid).data("kendodropdownlist");    if(cb){          // operation on dropdown     }  } 

it gets kendo drop down of page, want div.

i tried

$("#mydiv .k-list-container").each(function () { 

and several other selectors did not work out.

have tried using .find on div want search?

$("#mydiv").find(".k-list-container{ 

Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -