Page 136 of 184
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 11:23
by raymond
Is your IP correct and are you using Favorites in Domoticz?
I would still try to add a switch in your columns like I suggested above, just to check if it shows up
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 11:30
by madpatrick
raymond wrote: ↑Friday 11 August 2017 11:23
Is your IP correct and are you using Favorites in Domoticz?
I would still try to add a switch in your columns like I suggested above, just to check if it shows up
IP is correct. This is the same as in de popup. When i change this, the sensors and favorites dissapear.
Favorites are working in Domoticz and visable when i use popup configuration
IDX added, but just an empty line.
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 11:39
by raymond
Clear your browser cache? Just trying to think out loud what it could be.
I had some troubles at start but in the end when you copy over the settings from the browser popup into CONFIG.js it works flawless over here.
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 11:48
by madpatrick
When it press F12, isee the following error:
Code: Select all
main.js?v=1502444821409:801 Domoticz error!
Please, double check the path to Domoticz in Settings!
This not is appearing when i use the popup setting
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 11:51
by raymond
Did you set local IP adresses to acces Domoticz without login/password?
Go to Settings in Domoticz and check this in the System tab:
Local Networks (no username/password):
In here you can define your local network not needing a password to access
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 12:06
by madpatrick
raymond wrote: ↑Friday 11 August 2017 11:51
Did you set local IP adresses to acces Domoticz without login/password?
Go to Settings in Domoticz and check this in the System tab:
Local Networks (no username/password):
In here you can define your local network not needing a password to access
No password set in Domoticz.
But i put in other IDX numbers, and now i see the sensors
We are getting there.....
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 12:08
by madpatrick
Groups are not working with the IDX.
Is this an other setting ?
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 12:10
by robgeerts
For groups you have to put an s in front, like:
Code: Select all
columns[1]['blocks'] = ['s1','s2']
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 12:11
by raymond
Great !
I might be off here.. but typically your settings in the browser popup are used when the values are not found in your CONFIG.js file.
When something significant changes in de settings pop-up in the browser, I copy over these settings in my CONFIG.js file every now and then.
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 12:11
by madpatrick
robgeerts wrote: ↑Friday 11 August 2017 12:10
For groups you have to put an s in front, like:
Code: Select all
columns[1]['blocks'] = ['s1','s2']
Great !!
This is also working now !!
Re: Dashticz - General Discussions
Posted: Friday 11 August 2017 12:16
by raymond
robgeerts wrote: ↑Friday 11 August 2017 12:10
For groups you have to put an s in front, like:
Code: Select all
columns[1]['blocks'] = ['s1','s2']
Yes! In addition you can use 'graph_x'
Sometimes a block is presenting 2 values (kWh devices for example) which you can define to single out by using 'x_1' or 'x_2'
where x is the IDX number of your switch in Domoticz. And don't forget to put this in ' '
EDIT:
It might be an idea of keeping track of these things somewhere, in additon how to declare the default blocks.
I have the same thing going on understanding how to define the screens for different devices etc.
The Wiki can't keep up with the speed of changes in the beta !!!
Help Needed
Posted: Monday 14 August 2017 2:49
by femuruy
Hi guys in first place plz apologize but i am very very new to domoticz and even newer to dashticz!
i have just installed Dashticz and connected it to my domoticz but i have 50 working switches and i can only see 25 of them on dashticz? also looks like my screen is divided into 3 columns (and only the leftmost one is populated with my switches) so how do i delete the columns i do not want and how do i get all my switches to show?
thank you in advance for your help!
Femur
- Spoiler: show
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 9:16
by robgeerts
By default, all your switches are placed in column 1, if you want to move some of the switches to column 2 or 3 you have to define it like this example. de numbers are de IDX of the device in Domoticz (you can find it on the Hardware-tab in Domoticz). The ones with the 's' in front are scenes/groups.
Code: Select all
var columns = {}
columns['bar'] = {};
columns['bar']['blocks'] = ['logo', 'miniclock', 'settings'];
columns[1] = {};
columns[1]['blocks'] = [233, 62, 117, 110, 's1', 's2', '144_2', 295, 204];
columns[1]['width'] = 5;
columns[2] = {};
columns[2]['blocks'] = ['currentweather_big', 'weather', 324,174, 145, 284, 286, 287, '150_1', '150_2', '151_1', 5, 97, 301, 302];
columns[2]['width'] = 5;
columns[3] = {};
columns[3]['blocks'] = ['sunrise', 'streamplayer'];
columns[3]['width'] = 2;
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 9:55
by femuruy
hi thanks for the reply, is it possible to have just one column, full screen width and all my switches in there without having to write 50 different IDXs?
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 10:27
by robgeerts
Download latest beta and add to config.js:
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 10:31
by femuruy
thanks mate!
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 12:06
by femuruy
Rob... i hid the new config button and top bar... how do i unhide it?
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 13:20
by robgeerts
In config.js, find:
and change it to:
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 20:00
by MsbS
My news (rss) block seems to have disappeared after the upgrade - anyone with similar issues? Can any of you share a link to any working RSS, so I could check if this is just my misconfigured CONFIG.js?
Re: Dashticz - General Discussions
Posted: Monday 14 August 2017 20:15
by robgeerts
whats your current config.js?