Announcement

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

    Calendar component missing from SmartClient7-RC2

    I was working on an application using Calendar.
    I have just downloaded SmartClient 7 RC2 LGPL and I get the following error message: "isc.Calendar is undefined".
    Looking at the SmartClient Explorer I get:
    "This example is disabled in this SDK because it requires the following optional SmartClient components: Calendar Module".
    Can you comment?

    Thanks

    #2
    Hi all,
    i'm experiencing the same issue with ver 7 RC2 LGPL.
    I've tryed to download again all "modules" folder js files, but nothing to do.
    Firefox console of errors tells:

    "Errore: _11.createRaw is not a function
    File sorgente: http://www.enigmaweb.it/pharmaware/isomorphic/system/modules/ISC_Core.js
    Riga: 379"

    and

    "Errore: isc.DaySchedule.changeDefaults is not a function
    File sorgente: http://www.enigmaweb.it/pharmaware/isomorphic/system/modules/ISC_Calendar.js
    Riga: 178"

    I've used absolutely the same code of your simple calendar example, changing only the datasource name, the "clientOnly: true" clause in "clientOnly: false" and created the datasource as you declared on my DB.

    THanks a lot in advance for your support

    Comment


      #3
      The order you load the JS files is important.

      If you load calendar before core it will not work.

      'ISC_Core';
      'ISC_Foundation';
      'ISC_Containers';
      'ISC_Grids';
      'ISC_Forms';
      'ISC_DataBinding';
      'ISC_Calendar';

      Comment


        #4
        Fantastic, it works!
        It was already over the Core, but immediately over.
        Following your instructions i've put it at the bottom of the list, and it worked :)

        Thank you very much!

        Comment

        Working...
        X