ive been using this to set a default text form input on a kendo grid which works fine.
e.container.find("input[name=policy]").val(lender_policy).change();
however if i try and set a default value of a dropDownListlike below, it sets the value of the dropdownlist, but it insert blank data to the grid and DB. im guessing its because change() may need to be called like the text input but am not sure how that can be done.
e.container.find("input[name=lender]").data("kendoDropDownList").value(lender);
any help on this would be great.