Dashticz - Module - Calendar

Dashticz, alternative dashboard based on HTML, CSS, jQuery

Moderators: leecollings, htilburgs, robgeerts

User avatar
HansieNL
Posts: 957
Joined: Monday 28 September 2015 15:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz - Module - Calendar

Post by HansieNL »

EdKo66 wrote:FINALLY!!!!!! Got it to work, somehow. Just created another calendar, copied the link into the private part of CUSTOM.js, and... there was something.Now just to copy all the date from my 'old' private to the new one.
Just export and import... 2 clicks ;)
Blah blah blah
User avatar
EdwinK
Posts: 1820
Joined: Sunday 22 January 2017 21:46
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Rhoon
Contact:

Re: Dashticz - Module - Calendar

Post by EdwinK »

It didn't want to import at first. So.. I did a stern look at it, and now it works.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
alveman
Posts: 21
Joined: Wednesday 29 January 2014 22:42
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz - Module - Calendar

Post by alveman »

I send you one. iCoud just saying "Loading..." Maybe you can drive to my sons football games as well :D


Martin
robgeerts wrote:Who has problems with the calendar, please send me the full public url via pm. Of course I dont care about your appointments and wont share them. Explain wich appointment gives problems.
User avatar
EdwinK
Posts: 1820
Joined: Sunday 22 January 2017 21:46
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Rhoon
Contact:

Re: Dashticz - Module - Calendar

Post by EdwinK »

Just need the font-size a bit bigger.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
frippes
Posts: 1
Joined: Monday 17 April 2017 16:13
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz - Module - Calendar

Post by frippes »

How complicated would it be to make the calendar item to show a week, with days instead of a list of activities? To make it more visual.
jeeesper
Posts: 2
Joined: Sunday 21 May 2017 8:02
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz - Module - Calendar

Post by jeeesper »

EdKo66 wrote:Just need the font-size a bit bigger.
I need the same, cant get it to display on a larger font (just the calendar part), without messing up other parts of the dashboard.
User avatar
htilburgs
Posts: 464
Joined: Tuesday 03 November 2015 11:01
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Netherlands
Contact:

Re: Dashticz - Module - Calendar

Post by htilburgs »

In the latest beta there is an icon for the calendar

Code: Select all

var calendars = {}
calendars.f1 = {maxitems: 5, title:'F1 Kalender', icon:'fa-calendar', icalurl:'https://calendar.google.com/calendar/ical/xxx/public/basic.ics'}
If you don't want an icon, just put in

Code: Select all

icon: ''
The text size can be changed by putting this in custom.css. There a 2 parts, one with icon and one without icon:

Code: Select all

/* Calendar font modifications with icon active */
.col-xs-10.items {
	font-size: 20px;
}

/* Calendar font modifications with NO icon active */
.col-xs-12.items {
	font-size: 20px;
}
Hardware:
RPi3 - Aeon Labs Z-Stick GEN5 - Fibaro Dimmer 2 - Fibaro Roller Shutter 2 - Fibaro Smoke Sensor - Yeelight RGBW Led bulb - Yeelight Smart LED Light Strip - Neo Coolcam PIR Motion Sensor - Neo Coolcam PowerPlug - Nest Thermostat v3
User avatar
EdwinK
Posts: 1820
Joined: Sunday 22 January 2017 21:46
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Rhoon
Contact:

Re: Dashticz - Module - Calendar

Post by EdwinK »

Thanks. Although 20 is a bit big. Changed to 15
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
User avatar
htilburgs
Posts: 464
Joined: Tuesday 03 November 2015 11:01
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Netherlands
Contact:

Re: Dashticz - Module - Calendar

Post by htilburgs »

;-)
Hardware:
RPi3 - Aeon Labs Z-Stick GEN5 - Fibaro Dimmer 2 - Fibaro Roller Shutter 2 - Fibaro Smoke Sensor - Yeelight RGBW Led bulb - Yeelight Smart LED Light Strip - Neo Coolcam PIR Motion Sensor - Neo Coolcam PowerPlug - Nest Thermostat v3
jeeesper
Posts: 2
Joined: Sunday 21 May 2017 8:02
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz - Module - Calendar

Post by jeeesper »

Thanks, was working on an old version of Dashticz, did not find the col-xs-12.items there, Just the col-xs-12. changing that messed up a lot.

Now on the new version it is working!
User avatar
EdwinK
Posts: 1820
Joined: Sunday 22 January 2017 21:46
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Rhoon
Contact:

Re: Dashticz - Module - Calendar

Post by EdwinK »

htilburgs wrote:In the latest beta there is an icon for the calendar

Code: Select all

var calendars = {}
calendars.f1 = {maxitems: 5, title:'F1 Kalender', icon:'fa-calendar', icalurl:'https://calendar.google.com/calendar/ical/xxx/public/basic.ics'}
If you don't want an icon, just put in

Code: Select all

icon: ''
The text size can be changed by putting this in custom.css. There a 2 parts, one with icon and one without icon:

Code: Select all

/* Calendar font modifications with icon active */
.col-xs-10.items {
	font-size: 20px;
}

/* Calendar font modifications with NO icon active */
.col-xs-12.items {
	font-size: 20px;
}
Works with separate calendars, but not for combined.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
User avatar
htilburgs
Posts: 464
Joined: Tuesday 03 November 2015 11:01
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Netherlands
Contact:

Re: Dashticz - Module - Calendar

Post by htilburgs »

I only have separated calendars. Will try to make a combined later in and search for the css.

With F12 and/or inspect you can come to the right settings too ;-) It's not as hard as it lookes like.
Hardware:
RPi3 - Aeon Labs Z-Stick GEN5 - Fibaro Dimmer 2 - Fibaro Roller Shutter 2 - Fibaro Smoke Sensor - Yeelight RGBW Led bulb - Yeelight Smart LED Light Strip - Neo Coolcam PIR Motion Sensor - Neo Coolcam PowerPlug - Nest Thermostat v3
User avatar
EdwinK
Posts: 1820
Joined: Sunday 22 January 2017 21:46
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Rhoon
Contact:

Re: Dashticz - Module - Calendar

Post by EdwinK »

F12 doesn't work on MacBook, but I know what you mean. I now use separate calendars. Looks even beter.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
User avatar
htilburgs
Posts: 464
Joined: Tuesday 03 November 2015 11:01
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Netherlands
Contact:

Re: Dashticz - Module - Calendar

Post by htilburgs »

I've made a combined calendar, Icon doesn't work, but the css for larger font does, it is:

Code: Select all

.col-xs-12.items {
   font-size: 15px;
}
Hardware:
RPi3 - Aeon Labs Z-Stick GEN5 - Fibaro Dimmer 2 - Fibaro Roller Shutter 2 - Fibaro Smoke Sensor - Yeelight RGBW Led bulb - Yeelight Smart LED Light Strip - Neo Coolcam PIR Motion Sensor - Neo Coolcam PowerPlug - Nest Thermostat v3
User avatar
EdwinK
Posts: 1820
Joined: Sunday 22 January 2017 21:46
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Rhoon
Contact:

Re: Dashticz - Module - Calendar

Post by EdwinK »

Merci. That was quick ;)
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
User avatar
htilburgs
Posts: 464
Joined: Tuesday 03 November 2015 11:01
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Netherlands
Contact:

Re: Dashticz - Module - Calendar

Post by htilburgs »

As I said, it's not that hard....;-)
I've created and written the Wiki (most of it) and for testing I've a Dashboard with most of the items in....
Hardware:
RPi3 - Aeon Labs Z-Stick GEN5 - Fibaro Dimmer 2 - Fibaro Roller Shutter 2 - Fibaro Smoke Sensor - Yeelight RGBW Led bulb - Yeelight Smart LED Light Strip - Neo Coolcam PIR Motion Sensor - Neo Coolcam PowerPlug - Nest Thermostat v3
User avatar
mvveelen
Posts: 678
Joined: Friday 31 October 2014 10:22
Target OS: NAS (Synology & others)
Domoticz version: Beta
Location: Hoorn, The Netherlands
Contact:

Re: Dashticz - Module - Calendar

Post by mvveelen »

One of my 2 iCloud calendars only gives me the special (recurring) appointments. This is since one of the last beta's. Anyone else having the same problems?

Edit:

just updated to the latest Beta and now the calendar is fine again :D Thanks Rob !
RPi3b+/RFXCOM rfxtrx433E/Shelly/Xiaomi Gateway/Philips HUE Lights/Atag Zone One/2 SunnyBoy inverters/AirconWithMe/P1 smartmeter/Domoticz latest Beta
robgeerts
Posts: 1273
Joined: Saturday 24 January 2015 22:12
Target OS: NAS (Synology & others)
Domoticz version: 3.7067
Location: NL
Contact:

Re: Dashticz - Module - Calendar

Post by robgeerts »

Fixed a small bug in latest beta!
Trigun
Posts: 390
Joined: Wednesday 30 November 2016 11:58
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz - Module - Calendar

Post by Trigun »

hey guys, quick question, when becomes the Beta version a Master version?
User avatar
EdwinK
Posts: 1820
Joined: Sunday 22 January 2017 21:46
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Rhoon
Contact:

Re: Dashticz - Module - Calendar

Post by EdwinK »

Wrong topic, but about once a week, Rob commits a new stable version.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests