<e-column field="CustomerID" headerText="Customer ID" textAlign="Left" :template="cTemplate" width="180"></e-column>
cTemplate: function () {
return {
template: Vue.component("columnTemplate", {
template: `<ejs-chiplist id="chip" :text=CustomerID></ejs-chiplist>`,
data: function () {
return {
data: {},
};
},
computed: {
CustomerID: function (args) {
return this.data.CustomerID;
},
},
}),
};
},
|
Hi Shalini / subramani,
im using ejs grid and for a table and there are add,edit,save,delete,options in that
i need to change a column for chips like e-chips which should take input from user and convert them to chips and display in the column value there ,
i tried e chips but i cant find anything for giving input to chips dynamicall from ui
please provide me a sample to have a column for chips in a ejs grid
thankyou