.&1|?" {}:+dt 4BEn!3_${Eڞtڹċ.5[o/6d ǂ :In@Ć`tcA-pWv4FWyݞ@d;B[\oI$@*sbrY$]~4B''S:fŗz|nE՚`P?uuz 8= 0z&ObP8.Y6Ȓ#pJ.qQI^ZNAsqɾ:3u`{:Wl n+{HKi(K\" 42;e9ٖ~y6\2KȘ  jJH87]':6"Y[BүZa!X)I&M|X?ِ$3L?#bck+˕ušoUME V*@kf:z~TҹrHгKOBYL8FP("d= =a~vK&&uQ'%Z?07ٿSg*Q2 TQ͙|ѓw-$B j&9)ֈK1UCH0b@$sζlS/nPgBoǿ?etve1mnZxRE`Ҵpz&+ 13 /;+#IJ2;e9ٖ~y6\2KȘ  jJH87]':6"Y[rfN)ȯ)ǽ&M|X?ِ$3L?#bck+˕ušoUME V*@kf:e8A0N!'5ޏY \8UJUAPA>𿀥xڤP&0@mtӟ結zK\y*vT@hE _K#ضe%5^ĴM[:;,{*Op318cg* ר9̹}@tse J N5[y-ģL7͌2!UyߖiN؝1zQ5,No^}@tse J N5[y-ģL7͌2!UyߖiN؝1۫9'Q4YofKoLdar?J =KB,+?gs;(Yw2m *])6"Jֻ 5AyYA=FӿSoTR)1]*HSQY9*UX`fcB"TF(ʶ^#>qQI^ZNAsTP(lT%N5S]_Ȝ y3k:61)W54fu*1Qx '9[5prCZ w`\̹$}=^QHn|6ǹ$x5)WZ=Kϛ]_GA nͻorϰDPM>=LO,]RI>p|MTgCzzW]woe  /\Nq_ XhעRER4DQP^NΆ* h4s3~6mA 6knf۫0@tn}hPϛ]_GA nͻk:X͙!h1-mYE"-cFCĶÍC;訴3 3p8nn&,`\f+SƀNJ\ ~9=)qeXV1'B]O"-cFCĶÍC;0wG~0f8nn&,`\f+SƀNwC- VUpcIKb(Q#M&6ib$p~LtC=BNŰb'α# #vH,Hz(x`:r y (-f2Fx[X58F9tjMfigvz|RR{^T40% D<2b}fBW>~9Vyaֵ딈Ih1-mYE"-cFCĶÍC;~9#}np&gX_h &dX;)I"wS< DOb6B2 @3\˕+ZKl퀨"yW(u܏w_vXg' ?k]2C5tޔ` &~x 㕽.i Gm7Zs17 &f:DRWT3.TH=pK"q'{~I}"Wʇ-O'䇫3 appointment6 = { id: "id6", description: "", location: "", subject: "Nancy", calendar: "Room 4", start: new Date(2016, 10, 26, 14, 0, 0), end: new Date(2016, 10, 26, 16, 0, 0) } appointments.push(appointment1); appointments.push(appointment2); appointments.push(appointment3); appointments.push(appointment4); appointments.push(appointment5); appointments.push(appointment6); // prepare the data var source = { dataType: "array", dataFields: [ { name: 'id', type: 'string' }, { name: 'description', type: 'string' }, { name: 'location', type: 'string' }, { name: 'subject', type: 'string' }, { name: 'calendar', type: 'string' }, { name: 'start', type: 'date' }, { name: 'end', type: 'date' } ], id: 'id', localData: appointments }; var adapter = new $.jqx.dataAdapter(source); $("#scheduler").jqxScheduler({ date: new $.jqx.date(2016, 11, 23), width: 850, height: 600, source: adapter, showLegend: true, ready: function () { $("#scheduler").jqxScheduler('ensureAppointmentVisible', 'id1'); $("#scheduler").jqxScheduler('beginAppointmentsUpdate'); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id1', 'resizable', false); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id2', 'draggable', false); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id3', 'resizable', false); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id3', 'draggable', false); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id4', 'readOnly', true); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id5', 'hidden', true); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id6', 'hidden', true); $("#scheduler").jqxScheduler('endAppointmentsUpdate'); }, resources: { colorScheme: "scheme05", dataField: "calendar", source: new $.jqx.dataAdapter(source) }, appointmentDataFields: { from: "start", to: "end", id: "id", description: "description", location: "place", subject: "subject", resourceId: "calendar" }, view: 'monthView', views: [ 'dayView', 'weekView', 'monthView' ] }); $("#showAppointmentsButton").jqxButton(); $("#showAppointmentsButton").click(function () { $("#scheduler").jqxScheduler('beginAppointmentsUpdate'); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id5', 'hidden', false); $("#scheduler").jqxScheduler('setAppointmentProperty', 'id6', 'hidden', false); $("#scheduler").jqxScheduler('endAppointmentsUpdate'); }); });