I have a Kendo DropDownList what I have to select an element by the text containing 8. I can select element by the full string, I only need to select it by a substring.
The partly working code looks like:
var ddlist = $("#HibaTipusKod_" + munkatargyaId).data("kendoDropDownList");
console.log(ddlist);
ddlist.value("8/a");
ddlist.trigger("change");
My need is:
ddlist.value(*startswith/contains*"8");
ddlist.trigger("change");
At the logging I can see it right.