Hi
How can I add in week view beside every day-title(Fr. April 22) an input box? When value in input is changed, I need an event with info of text and day.
best regards
Christoph
Hi
How can I add in week view beside every day-title(Fr. April 22) an input box? When value in input is changed, I need an event with info of text and day.
best regards
Christoph
Hi,
Please try this configuration
var format = scheduler.date.date_to_str(scheduler.config.day_date);
scheduler.templates.week_scale_date = function(date){
return '<input type="text" name="txt1" id="txt1" value="xxx" style="width:30px;"/>'+format(date);
};
Hope this will help you
Hi
Perfect. Thanks.
Best regards
Christoph