$(document).ready(function(){
   if (!$("#id_test").data("kendoComboBox")) {
      var id_test=$("#id_test").kendoComboBox({
         value: 2,
         dataTextField: "text",
         dataValueField: "value",
         clearButton: true,
         suggest: true,
         placeholder: "Select...",
         dataSource: new kendo.data.DataSource({
            data: [
              { value:"1", text:"abandoned" },
              { value:"2", text:"pass" },
              { value:"3", text:"bright" },
              { value:"4", text:"distinct" },
              { value:"5", text:"tooth" },
              { value:"6", text:"support" },
              { value:"7", text:"talk" },
              { value:"8", text:"cheese" },
            ],
            schema: {
               model: {
                  id: "value",
               },
            },
         }),
      }).data("kendoComboBox");
      $("#id_test").data("type","kendoComboBox");
      $("#id_test").bind("destroy",function(e,data) {
         $("#id_test").data("kendoComboBox").destroy();
      });
   };
});
