SmartClient Version: v13.1p_2025-08-01/AllModules Development Only (built 2025-08-01)
Hi, I have a question about the Calendar.selectChosenDate attribute.
Even when I set it to false, the selected date still appears styled differently from the others:
is it a bug or am I missing something?
Hi, I have a question about the Calendar.selectChosenDate attribute.
Even when I set it to false, the selected date still appears styled differently from the others:
Code:
isc.DataSource.create({ ID: "eventDS", fields:[ {name:"eventId", primaryKey: true, type: "sequence"}, {name:"name"}, {name:"description"}, {name:"startDate", type: "datetime"}, {name:"endDate", type: "datetime"} ], clientOnly: true, testData: eventData }); isc.Calendar.create({ ID: "eventCalendar", startDate: eventData.getDataStartDate(), dataSource: eventDS, autoFetchData: true, selectChosenDate: false, currentViewName: "month" });
Comment