Hi,
I'm using a Scheduler defined like this:
But the k-current-nav styled anchor element:
Does not display a formattedDate as it should. I went through the API but there seems to be no way to override this "formattedDate" property.
Could you please point me in the right direction?
Regards.
PS: I've attached an image file that shows an icon without any text where the formattedDate range should appear.
I'm using a Scheduler defined like this:
$("#scheduler").kendoScheduler({ date: new Date(), startTime: new Date("2013/11/27 07:00 AM"), endTime: new Date("2013/11/27 06:00 PM"), workDayStart: new Date("2013/1/1 08:00 AM"), workDayEnd: new Date("2013/1/1 6:00 PM"), selectable: true, views: [ { type: "day", allDaySlot: false }, { type: "week", selected: true, allDaySlot: false }, "month", "agenda" ], editable: { template: kendo.template($("#schedulerTemplate").html()) }, dataSource: _dataSourceDetailedAppointmentScheduler, edit: _api.onEditScheduler, cancel: _api.onCancelScheduler, save: _api.onSaveScheduler, navigate: _api.onNavigate, moveStart: _api.onMoveStart, mobile: true, messages: { cancel: "Cancelar", date: "Fecha", deleteWindowTitle: "Borrar visita", event: "Visita", save: "Guardar", showFullDay: "Mostrar las 24 Horas", showWorkDay: "Mostrar horas laborales", time: "Hora del dÃa", today: "Hoy", editor: { editorTitle: "Crear/Editar Visita" }, views: { day: "DÃa", week: "Semana", month: "Mes", workWeek: "Semana laboral" } }, resources: [ { field: "CommertialRepresentativeId", // The field of the scheduler event which contains the resource identifier title: "Representante Comercial", // The label displayed in the scheduler edit form for this resource dataSource: [ { text: "Representante 1", // Text of the resource instance value: 1, // Identifier of the resource instance, use that value to assign an event to this instance. color: "#ff0000" // Used as the background of events assigned to this resource. }, ], multiple: false // Indicate the this is a multiple instance resource } ]});<li class="k-state-default k-nav-current"><a role="button" href="#" class="k-link"><span class="k-icon k-i-calendar"></span><span data-bind="text: formattedDate"></span></a></li>Could you please point me in the right direction?
Regards.
PS: I've attached an image file that shows an icon without any text where the formattedDate range should appear.