dataValueField String(default: "")

    The field of the data item that provides the value of the widget.

    When dataValueField is defined, the dataTextField option also should be set.

    Example - set the dataValueField

    Open In Dojo
    <input id="dropdownlist" />
    <script>
    $("#dropdownlist").kendoDropDownList({
        dataSource: [
            { Name: "Parent1", Id: 1 },
            { Name: "Parent2", Id: 2 }
        ],
        dataTextField: "Name",
        dataValueField: "Id"
    });
    </script>
    In this article