Dashticz - Alternative Dashboard

Moderator: leecollings

Post Reply
robgeerts
Posts: 1273
Joined: Saturday 24 January 2015 22:12
Target OS: NAS (Synology & others)
Domoticz version: 3.7067
Location: NL
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by robgeerts »

I'm also running it from a Windows-pc (Win 8.1) and works, but, do you get any errors?
Could you open the console (in your browser, CTRL+SHIFT+J in Google Chrome) and see if it shows any errors?
robgeerts
Posts: 1273
Joined: Saturday 24 January 2015 22:12
Target OS: NAS (Synology & others)
Domoticz version: 3.7067
Location: NL
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by robgeerts »

The console shows you it cant find the files requested...
You are trying to open Dashticz in a subfolder /dash but it is looking for some files in the root.

Try adding this line in index.html (open with notepad) right after <head>:

Code: Select all

<base href="http://192.168.2.19:8080/dash/" />
Hope this will fix your problem for now..
jjnj

Re: WIP - Dashticz - Alternative Dashboard

Post by jjnj »

robgeerts wrote:The console shows you it cant find the files requested...
You are trying to open Dashticz in a subfolder /dash but it is looking for some files in the root.

Try adding this line in index.html (open with notepad) right after <head>:

Code: Select all

<base href="http://192.168.2.19:8080/dash/" />
Hope this will fix your problem for now..
That did the trick!! Thanks :)
wilmardo
Posts: 1
Joined: Sunday 13 September 2015 15:13
Target OS: Linux
Domoticz version:
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by wilmardo »

First, thanks for the cool dashboard!
I installed it yesterday and I like it very much but I would like to use it on my tablet but the dash would not load? I see nothing but a white page, I see no errors in my Nginx log and the dash loads fine on desktop.
Do you have a clue what could cause that? I tried the remote debugging through Chrome but my phone is not seen in chrome://inspect. If you would like the output of the console I could borrow someones phone and try it again.
I do not know if this is the right place to suggest a functionality but I would like to see the 'Actuele vertrektijden' from the NS api (http://www.ns.nl/api/home) on my dash. So if my train is delayed I could see it directly on my tablet on the wall :)
drogert
Posts: 38
Joined: Saturday 26 April 2014 15:27
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by drogert »

Nice! I installed it and it looked really cool. I did notice my normal dashboard was slower when the other was running. Also.. How did you get the buienradar widget? I have Forecast IO installed but I think I would like buienradar too!

Thanks and keep up the good work
RPI 3b+, PiFace 2, RFcom, Aeon Zwave USB, Aeon Home Energy Meter Gen 5, several Shelly switches, several ESP8266 sensors.
gdelaat
Posts: 1
Joined: Tuesday 15 September 2015 11:52
Target OS: Linux
Domoticz version: 2.2982
Location: Sittard, The Netherlands
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by gdelaat »

I've made some changes to dashtics.js in order to re-activate the display of buienradar. I've added the following code on line 134 (I'm not familiar with GitLab, so I'm posting my info here :) ):

Code: Select all

						
						$.ajax({
							url: _HOST_DOMOTICZ+'/json.htm?type=command&param=getconfig&jsoncallback=?',
							type: 'GET',async: false,contentType: "application/json",dataType: 'jsonp',
							success: function(data) {
								_LATITUDE = data.Latitude;
								_LONGITUDE = data.Longitude;
							}
						});
Patrick
Posts: 27
Joined: Friday 01 August 2014 23:40
Target OS: Raspberry Pi / ODroid
Domoticz version: 3.5877
Location: The Netherlands
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by Patrick »

Nice dashboard, but if I try to display it on my iPad1 the sliders are not displaying correctly. Also the pop-up showing the camera is to big for the screen. Is there a way to fix this?
Tommertom
Posts: 13
Joined: Monday 01 September 2014 17:31
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by Tommertom »

Hi

I am not sure if there is still development on this tool, but after looking at the alternatives in this forum (appoticz, dashicz, themes on defaul UI) I would like to use it to some development myself as the setup is actually quite nice and the code comprehensible.

I would like to extend it to do the following in order to improve my WAF for this beautiful hobby:

1- blocks in different sizes, pending content, pretty responsive for tablet and mobile devices
2- no graphs in the overall dashboard (see 4)
3- buttons and sliders etc on the panels, not as panel footer as currently implemented
4- the panel background clickable which leads to a deep-dive panel showing more detail (for instance, elaborate info on weather, graphs, etc.). I already created a panel using the xml feed for detailed weather info and news.
5- adding blocks through virtual devices ("text device") for weather, sonos, and all other required blocks not related to domoticz devices (such as nzb, wunderground, etc.)
6- changing the edit mode - block configuration through preamble in name of device - if the name starts with underscore, it will be allowed in the dashboard (I regard the domoticz UI as a administrator panel, not a user panel). Sorting should remain.
7- multi user support for 6.

A long list and I want to start with the first 4 of which 1,2,3 are easy and already done. For 4 I need to find out how to make the background of a panel clickable without losing the click function on the buttons on the panel itself. Anyone knows how?

Once it seems to work out well, I will be happy to share.

Regards

Tom
Ingmar
Posts: 51
Joined: Sunday 04 May 2014 1:34
Target OS: NAS (Synology & others)
Domoticz version:
Location: The Netherlands
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by Ingmar »

Is this still in development?

I only get a white screen... console says the following:
error.JPG
error.JPG (27.18 KiB) Viewed 6692 times

I've installed Dashticz on my Synology NAS. What is wrong?

Gr. Ingmar
Synology NAS with stable release, AEON Z-wave, RFXCOM, Toon, Echo Dot, HAbridge, HarmonyHUB, Dashticz.
klontje
Posts: 19
Joined: Sunday 01 September 2013 13:16
Target OS: Windows
Domoticz version:
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by klontje »

Same here, just a white screen and base url is set correct.
robgeerts
Posts: 1273
Joined: Saturday 24 January 2015 22:12
Target OS: NAS (Synology & others)
Domoticz version: 3.7067
Location: NL
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by robgeerts »

Currently I'm not actively developing on Dashticz. Although, I'm checking regularly for any replies on this topic and when needed, I'll reply or will find a solution.
Has Dashticz worked in the past for the both of you?
Ingmar
Posts: 51
Joined: Sunday 04 May 2014 1:34
Target OS: NAS (Synology & others)
Domoticz version:
Location: The Netherlands
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by Ingmar »

Nope, it's a first time try for me. It looks and sounds good so want to give it a go :)

Do you still have plans to develop it further Rob?
Synology NAS with stable release, AEON Z-wave, RFXCOM, Toon, Echo Dot, HAbridge, HarmonyHUB, Dashticz.
robgeerts
Posts: 1273
Joined: Saturday 24 January 2015 22:12
Target OS: NAS (Synology & others)
Domoticz version: 3.7067
Location: NL
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by robgeerts »

Could you give me a printscreen of the network-tab in console?
One of the requests will be red..

I try to develop some more on Dashticz but unfortunately I do not have any spare time at the moment...
Ingmar
Posts: 51
Joined: Sunday 04 May 2014 1:34
Target OS: NAS (Synology & others)
Domoticz version:
Location: The Netherlands
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by Ingmar »

See below the screenshot of the network tab. I can't see anything red to be honest...

Time is always a precious thing, we're happy with whatever you manage to put into Dashticz :D
Network.png
Network.png (248.33 KiB) Viewed 6552 times
Synology NAS with stable release, AEON Z-wave, RFXCOM, Toon, Echo Dot, HAbridge, HarmonyHUB, Dashticz.
User avatar
jfhautenauven
Posts: 17
Joined: Sunday 13 March 2016 16:09
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Belgium
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by jfhautenauven »

Hello,

I'm new to this forum. Been interested in a while in alternative dashboards for Domoticz;

I've been recently working on the code of Dashticz and did the following so far :

- Added translation to French
- Modified texts that were in Dutch to move them to the translation files

Is anyone still interested in this stuff or am I the only one?

I would be glad to contribute to the project
User avatar
gizmocuz
Posts: 2350
Joined: Thursday 11 July 2013 18:59
Target OS: Raspberry Pi / ODroid
Domoticz version: beta
Location: Top of the world
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by gizmocuz »

jfhautenauven wrote:Hello,

I'm new to this forum. Been interested in a while in alternative dashboards for Domoticz;

I've been recently working on the code of Dashticz and did the following so far :

- Added translation to French
- Modified texts that were in Dutch to move them to the translation files

Is anyone still interested in this stuff or am I the only one?

I would be glad to contribute to the project
besides the custom theme, translation work is always appreciated.

The theme'ing stuff in domoticz is still not where it should be, so unless this is fixed, it makes not a real difference how domoticz looks like
As i always say, try to theme your cisco router... .... thats a no
Quality outlives Quantity!
User avatar
jfhautenauven
Posts: 17
Joined: Sunday 13 March 2016 16:09
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Belgium
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by jfhautenauven »

Well, theming a Cisco sounds odd lol

I guess I could be of some use at some point, but I'm C# .Net Senior dev who knows very little about js ...

Anyways, I think that it's Rob Geerts who does the stuff for dashticz? (not domoticz, the Dashticz frontpage) , so maybe we could arrange something so that I could post code on his repo?

Or is there another place where I could do it?

ps : I don't want to steal anything from anyone, just trying to help here ... got some time for the moment, so ...
inbedrijf
Posts: 3
Joined: Monday 01 February 2016 21:38
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by inbedrijf »

Awesome skin, and got it working on mij server. but i also have this problem : 2- no graphs in the overall dashboard. Is there a solution for this problem?
inbedrijf
Posts: 3
Joined: Monday 01 February 2016 21:38
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: WIP - Dashticz - Alternative Dashboard

Post by inbedrijf »

Anybody?
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests