Hi,
Is it possible to pass another parameter with event to methods?
my code is as below:
<kendo-grid-column field="UnloadingID" title="Unloading" :template="getLayerName(shapes,event)" ></kendo-grid-column>
and method is: (shapes is in my data)
getLayerName: function (shapes,e) {
console.log(e,shapes);
}
