Hello,
Is it possible to modify the text of a a cell in a matrix view ?
By default, we can see how many events there are in a cell but i want to change it by a list of events texts for example.
Hello,
Is it possible to modify the text of a a cell in a matrix view ?
By default, we can see how many events there are in a cell but i want to change it by a list of events texts for example.
Hi,
you may try overriding ‘cell_value’ template of the matrix viewscheduler.createTimelineView({
name: "matrix",
...
});
scheduler.templates.matrix_cell_value = function(evs){
return evs?evs.length:"";//default template
};
Thanks a lot. it work perfectly.
Now i need to resolve the export to PDF problem with this