Below is my current kendo code snippet:
<script>
$("#dropdowntest").kendoDropDownList({
optionLabel: "Select N#",
dataTextField: "NNumber",
dataValueField: "AircraftID",
index: 0,
dataSource: dataSource
});
I have thoroughly reviewed the kendo documentation but I am unable to find a way to bind a data SELECTION value. Most tutorials demonstrate using the html5 tag as shown below.
<select id="dropdown" data-bind="value: selectedProductValue, source: products" >
The selectedProductValue attribute enables them to monitor the selected value, however, I cannot figure out how to achieve this without an html tag. My goal is to avoid using any html tags and perform all actions in JavaScript alone. Thank you.