New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
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();
}
|