Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    problem with Calendar.selectChosenDate

    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:

    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"
    });
    is it a bug or am I missing something?

    #2
    hi Claudio - yes, it was a bug, and it's been fixed for today's builds, dated August 3, and later ones.

    Comment


      #3
      SmartClient Version: v13.1p_2025-08-03/Enterprise Deployment (built 2025-08-03)

      Hi, I can confirm it's fixed, thank you very much

      Comment

      Working...
      X