Hello,
where and what do i need to change, to preserve a newline in default user view?
In edit mode everything works fine:
In templates i add this code:
scheduler.templates.event_text=function(start,end,event){
var myDesc = event.details;
return "<b>"+event.text+"</b>
" + myDesc.replace(/(\r\n|[\r\n])/g, "
");
}
and it look like this:
If the user clicks on the entry, but it looks like this
Where can I change this?
Axel