Dashticz - Bug report
Moderator: leecollings
Re: Dashticz - Bug report
I ran into the same issue with WU as described above.
Removing the line solved the issue.
Additional now the big_weather block is not showing anymore. Anyone a solution for this?
Removing the line solved the issue.
Additional now the big_weather block is not showing anymore. Anyone a solution for this?
Re: Dashticz - Bug report
another issues; selector switches do not show correct pull down values. It is a irregular string of characters in Dashticz and one instead of four possible choices. Another selector switch shows no input option at all.
Changing the type from 'button' to selector in DZ makes no difference

Changing the type from 'button' to selector in DZ makes no difference

- EdwinK
- Posts: 1820
- Joined: Sunday 22 January 2017 21:46
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Rhoon
- Contact:
Re: Dashticz - Bug report
@renerene Maybe try this
You might want to check main.js and see this linepollefinario wrote: ↑Friday 07 September 2018 20:58 For me also the "dummy" selector switches are not working any more. I've added the switch in several ways, but no succes.
and change it into:Code: Select all
var names = device['LevelNames'].split('|');
MAKE A BACKUP FIRSTCode: Select all
var names = atob(device['LevelNames']).split('|');
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
Re: Dashticz - Bug report
thank you EdwinK: succes!
Re: Dashticz - Bug report
Last Monday I ran into the below issue.
https://github.com/Dashticz/dashticz_v2 ... 9e2dcc02e5
This resulted for me that things where breaking down. Not sure why, but by replacing the new lines with the old ones, the issue is gone.
For anyone who might ran into the same issue.
Digging for a while brought me to this:....
Additional now the big_weather block is not showing anymore. Anyone a solution for this?
https://github.com/Dashticz/dashticz_v2 ... 9e2dcc02e5
This resulted for me that things where breaking down. Not sure why, but by replacing the new lines with the old ones, the issue is gone.
For anyone who might ran into the same issue.
Re: Dashticz - Bug report
Please explain.Not sure why, but by replacing the new lines with the old ones, the issue is gone.
I have replaced the complete code in weather.js with the one from your github link.
-->
Big wheather does not show.
'config['wu_api'] = ....' line still leads to not loading Dashticz
-
- Posts: 18
- Joined: Thursday 06 September 2018 11:50
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest b
- Contact:
Re: Dashticz - Bug report
Beta 2.4.0
The collecting dates from the garbage module are now displayed with times. Very ununsual for the type of dates. 2.3 showed only the Date without any time, which is not needed.
The collecting dates from the garbage module are now displayed with times. Very ununsual for the type of dates. 2.3 showed only the Date without any time, which is not needed.
- HansieNL
- Posts: 964
- Joined: Monday 28 September 2015 15:13
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
Maybe you can try weather.js from beta branch?renerene wrote: ↑Wednesday 26 September 2018 23:02Please explain.Not sure why, but by replacing the new lines with the old ones, the issue is gone.
I have replaced the complete code in weather.js with the one from your github link.
-->
Big wheather does not show.
'config['wu_api'] = ....' line still leads to not loading Dashticz
Blah blah blah
-
- Posts: 36
- Joined: Sunday 11 February 2018 13:25
- Target OS: -
- Domoticz version:
- Location: Longwy, France
- Contact:
Re: Dashticz - Bug report
Hello,
Had a bug in weather.js, a double quote has been added (why ? I dunno). I have made a PR for that #372
Regards
Had a bug in weather.js, a double quote has been added (why ? I dunno). I have made a PR for that #372
Regards
Re: Dashticz - Bug report
I removed the line with the + and replaced it with the line with the -renerene wrote: ↑Wednesday 26 September 2018 23:02Please explain.Not sure why, but by replacing the new lines with the old ones, the issue is gone.
I have replaced the complete code in weather.js with the one from your github link.
-->
Big wheather does not show.
'config['wu_api'] = ....' line still leads to not loading Dashticz
But saw that magicduck found the issue and has made a PR. Thx for that!
Re: Dashticz - Bug report
when refreshing dashticz is says: 'nieuwe versie is beschilbaar, klik hier om te downloaden'
using 'git pull' as described on https://www.domoticz.com/wiki/Dashticz_ ... stallation however does not work: "already up to date"
using 'git pull' as described on https://www.domoticz.com/wiki/Dashticz_ ... stallation however does not work: "already up to date"
- HansieNL
- Posts: 964
- Joined: Monday 28 September 2015 15:13
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
I found 2 cosmetic bugs:

1. Icon of redefined block traffic smaller than rest of icons (beta 2.4.0) https://github.com/Dashticz/dashticz_v2/issues/383
The icon of redefined block traffic is smaller than other predefined icons.
If I change <em class="fa fa-car"></em> to <em class="fas fa-car"></em> the icon has size of other predefined icons.
2. TV Guide icon not shown in TV Guide block (beta 2.4.0) anymore https://github.com/Dashticz/dashticz_v2/issues/382
The TV Guide icon is not shown in the TV Guide block in beta 2.4.0 anymore.
This icon is shown in master 2.3.3.
If I change <em class="fa-television"></em> to <em class="fas fa-tv"> the icon is shown, but doesn't resize well.
I don't know how to fix these cosmetic bugs... Is there someone who can fix them and send a pull request?
FIXED IN LATEST BETA

1. Icon of redefined block traffic smaller than rest of icons (beta 2.4.0) https://github.com/Dashticz/dashticz_v2/issues/383
The icon of redefined block traffic is smaller than other predefined icons.
If I change <em class="fa fa-car"></em> to <em class="fas fa-car"></em> the icon has size of other predefined icons.
2. TV Guide icon not shown in TV Guide block (beta 2.4.0) anymore https://github.com/Dashticz/dashticz_v2/issues/382
The TV Guide icon is not shown in the TV Guide block in beta 2.4.0 anymore.
This icon is shown in master 2.3.3.
If I change <em class="fa-television"></em> to <em class="fas fa-tv"> the icon is shown, but doesn't resize well.
I don't know how to fix these cosmetic bugs... Is there someone who can fix them and send a pull request?
FIXED IN LATEST BETA
Blah blah blah
-
- Posts: 53
- Joined: Saturday 10 March 2018 2:01
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
I recently got this dashboard but i can not change/save settings and i can not move sliders on my screen.
The error i get is in the bottom right corner that i have to check the path to domoticz which is weird because i do see my switches.
chmod 777 CONFIG.js didnt do the trick so it ain't a permission error.
The error i get is in the bottom right corner that i have to check the path to domoticz which is weird because i do see my switches.
chmod 777 CONFIG.js didnt do the trick so it ain't a permission error.
- Attachments
-
- Screen Shot 2018-11-01 at 11.10.45.png (83.53 KiB) Viewed 3708 times
-
- Posts: 2287
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
If you want to change the blocks on the screen then you have to edit CONFIG.js by hand. See the WIKI https://www.domoticz.com/wiki/Dashticz_V2 or this forum on how to do that. The Edit mode within Dashticz is not working.RapTile wrote: ↑Thursday 01 November 2018 11:14 I recently got this dashboard but i can not change/save settings and i can not move sliders on my screen.
The error i get is in the bottom right corner that i have to check the path to domoticz which is weird because i do see my switches.
chmod 777 CONFIG.js didnt do the trick so it ain't a permission error.
For saving the config settings from the Dashticz -> settings window you must have a web server running with PHP enabled, for instance Apache. The Domoticz web server doesn't support PHP. See the installation instructions in the WIKI for more information.
-
- Posts: 30
- Joined: Friday 03 October 2014 22:51
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Contact:
iCloud calendar and Garbage tool NOT WORKING ANYMORE ?
Hello !
We have used the icloud calendar and the Garbage calender for some time in Dashticz, worked nice !
But now it's not working anymore ??
Don't know why, have updated the software and rebooted the RPI3, but still not working..
Any idea how to fix this ?
Thanks in advance !
Arthur
We have used the icloud calendar and the Garbage calender for some time in Dashticz, worked nice !
But now it's not working anymore ??
Don't know why, have updated the software and rebooted the RPI3, but still not working..
Any idea how to fix this ?
Thanks in advance !

- EdwinK
- Posts: 1820
- Joined: Sunday 22 January 2017 21:46
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Rhoon
- Contact:
Re: Dashticz - Bug report
Read topic from Rob Geerts at viewtopic.php?f=67&t=24907
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
-
- Posts: 53
- Joined: Saturday 10 March 2018 2:01
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
Thanks for the info.Lokonli wrote: ↑Thursday 01 November 2018 11:54 <..>
For saving the config settings from the Dashticz -> settings window you must have a web server running with PHP enabled, for instance Apache. The Domoticz web server doesn't support PHP. See the installation instructions in the WIKI for more information.
For some reason i can not get php7.0-curl installed.
I've updated the list with "sudo apt-get update" but when i do "sudo apt-get install php7.0-curl" i get the error:
E: Unable to locate package php7.0-curl
Any idea's?
-
- Posts: 53
- Joined: Saturday 10 March 2018 2:01
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
I managed to get this working with this manual:
https://www.stewright.me/2016/03/turn-r ... eb-server/
-
- Posts: 2287
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
Thanks! I'll add the link to the Wiki.RapTile wrote: ↑Thursday 01 November 2018 15:03I managed to get this working with this manual:
https://www.stewright.me/2016/03/turn-r ... eb-server/
-
- Posts: 53
- Joined: Saturday 10 March 2018 2:01
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Bug report
The sliders for volume don't run as smooth as they do in domoticz.
Is that normal? it looks like the sliders want to set the value along the way they slide instead of setting the value when u let go of your mouse button.
Is that normal? it looks like the sliders want to set the value along the way they slide instead of setting the value when u let go of your mouse button.
Who is online
Users browsing this forum: No registered users and 1 guest