Our state of the art Gantt chart


Post by Bhava »

Hi team,
I have created a combo as below

 newcombo: {
                  type: "combo",
                  displayField: "SELECT_TEAM",
                  valueField: null,
                  loadEvent(record) {               
this.store.data = TEAM_DETAILS;
}, },

Here I am able to get the data. And on clicking of Save the data is saved. But on opening I want to show the selected value. How I can show the selected value in the combo (like a default value)


Post by mats »

Put a ”name” on the combo (see docs) matching the Model field name - then the value is populated for you


Post by Bhava »

Is it possible to set value (run time )instead of using name?


Post by mats »


Post by Bhava »

Got it mats
Thank you


Post Reply