How to set multiple date in the calendar with mvvm.
I have my calendar :
<
div
id
=
"calendar1"
data-role
=
"calendar"
data-bind="value: Cvalue,
dates: Csource,
events:{change: ConChange}">
</
div
>
JS, view model:
Cvalue:null,
Csource:[],
Conchange:function(){
}
Csource contains:
[
{"nome":"1"},{"data":"21/112017"},
{"nome":"2"},{"data":"22/112017"},
{"nome":"3"},{"data":"26/112017"},
{"nome":"4"},{"data":"28/112017"},
{"nome":"5"},{"data":"29/112017"}
]
Cain i see this dates with different color in the calendar?
and at onChange of day, i'd like to print the name of date;