BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
refreshDataSource2: function() {
var sportsData = [
{ Id: "-1", Game: "None" },
{ Id: "GameB", Game: "Baseball" },
{ Id: "GameS", Game: "Soccer" },
{ Id: "GameH", Game: "Hockey" }
]
this.$refs.comboboxObj.ej2Instances.value = null;
this.$refs.comboboxObj.ej2Instances.dataBind();
this.$refs.comboboxObj.ej2Instances.dataSource = sportsData;
this.$refs.comboboxObj.ej2Instances.value = '-1';
this.$refs.comboboxObj.ej2Instances.dataBind();
}
|