FlatZ Frontpage
Moderator: leecollings
-
- Posts: 17
- Joined: Sunday 07 December 2014 15:14
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: FlatZ Frontpage
Hi all,
Can you help me to custom cells?
I want modify temp cells like that (Temp & Humidy on same cell) :
I think the chart isn't necessary for temp cells (for exemple we can automaticly change color of temp, blue = cold, red =hot).
How we can modify icons? exemple for electricity :
How we can add multiple status lines like here ?
Other question : is possible to add a group/scene to left switch panel ?
Thanks for your help !
Can you help me to custom cells?
I want modify temp cells like that (Temp & Humidy on same cell) :
I think the chart isn't necessary for temp cells (for exemple we can automaticly change color of temp, blue = cold, red =hot).
How we can modify icons? exemple for electricity :
How we can add multiple status lines like here ?
Other question : is possible to add a group/scene to left switch panel ?
Thanks for your help !
-
- Posts: 890
- Joined: Tuesday 30 September 2014 8:49
- Target OS: Linux
- Domoticz version: beta
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
Same here. But i don't have it in the Domoticz folder, but in the 'Web Station' (Synology) folder:jjnj wrote:For some reason my colours are white and pink
/volume1/web/
So maybe it has something to do with the paths or so? I would like to have it outside of Domoticz, so files are kept when upgrading Domoticz and it is easier to make backups.
I am not active on this forum anymore.
-
- Posts: 27
- Joined: Friday 01 August 2014 23:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 3.5877
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
In settings.js (/settings) you see $.theme = "mainLight.css"; //possible values: 'main.css', 'mainPurple.css', 'mainLight.css'ThinkPad wrote:Same here. But i don't have it in the Domoticz folder, but in the 'Web Station' (Synology) folder:jjnj wrote:For some reason my colours are white and pink
/volume1/web/
So maybe it has something to do with the paths or so? I would like to have it outside of Domoticz, so files are kept when upgrading Domoticz and it is easier to make backups.
If you change mainLight.css to main.css the theme is dark again.
-
- Posts: 890
- Joined: Tuesday 30 September 2014 8:49
- Target OS: Linux
- Domoticz version: beta
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
Thanks, that worked
Another question: is it by purpose that the log search function (great feature!) is case sensitive? Being not case sensitive would be a bit easier.
Will have a look at the page later, maybe i'll find some other improvement points. But for now it looks promising!
Another question: is it by purpose that the log search function (great feature!) is case sensitive? Being not case sensitive would be a bit easier.
Will have a look at the page later, maybe i'll find some other improvement points. But for now it looks promising!
I am not active on this forum anymore.
-
- Posts: 27
- Joined: Friday 01 August 2014 23:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 3.5877
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
I don't think Galadril did it on purpose, but if you modify the following the search will be case-insensitive:ThinkPad wrote:Thanks, that worked
Another question: is it by purpose that the log search function (great feature!) is case sensitive? Being not case sensitive would be a bit easier.
Will have a look at the page later, maybe i'll find some other improvement points. But for now it looks promising!
In methods.js add on row 558: var tempText = totalText.toLowerCase();
and change row 559 to : if (filter.length <= 0 || tempText.indexOf(filter) >= 0) {
I'm really excited about this frontpage!
{edit}
Wrong code inserted
- G3rard
- Posts: 669
- Joined: Wednesday 04 March 2015 22:15
- Target OS: -
- Domoticz version: No
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
Nice, thanks!Patrick wrote:I don't think Galadril did it on purpose, but if you modify the following the search will be case-insensitive:ThinkPad wrote:Thanks, that worked
Another question: is it by purpose that the log search function (great feature!) is case sensitive? Being not case sensitive would be a bit easier.
Will have a look at the page later, maybe i'll find some other improvement points. But for now it looks promising!
In methods.js add on row 558: var tempText = totalText.toLowerCase();
and change row 559 to : if (filter.length <= 0 || tempText.indexOf(filter) >= 0) {
I'm really excited about this frontpage!
{edit}
Wrong code inserted
Not using Domoticz anymore
- galadril
- Posts: 824
- Joined: Monday 07 September 2015 10:32
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: FlatZ Frontpage
Patrick wrote:In settings.js (/settings) you see $.theme = "mainLight.css"; //possible values: 'main.css', 'mainPurple.css', 'mainLight.css'
Solar panels of Ginlong, Omnik-Solar, Transenergy or Solarman?? Try my Android app:
https://play.google.com/store/apps/deta ... ongmonitor
https://play.google.com/store/apps/deta ... ongmonitor
- galadril
- Posts: 824
- Joined: Monday 07 September 2015 10:32
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: FlatZ Frontpage
Thanks for the help, if you like you can also contribute on the github pagePatrick wrote:In methods.js add on row 558: var tempText = totalText.toLowerCase();
and change row 559 to : if (filter.length <= 0 || tempText.indexOf(filter) >= 0)
Solar panels of Ginlong, Omnik-Solar, Transenergy or Solarman?? Try my Android app:
https://play.google.com/store/apps/deta ... ongmonitor
https://play.google.com/store/apps/deta ... ongmonitor
-
- Posts: 27
- Joined: Friday 01 August 2014 23:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 3.5877
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
@galadril,
I have a problem with dimming my KaKu dimmers.
The MaxDimLevel of these devices is 15, but FlatZ sends 0 - 100.
Can you insert a extra variable for setting the max dim level?
So if max is 15 the level send with the dim command is not eg 40 but 40*(MaxDimLevel / 100).
I have a problem with dimming my KaKu dimmers.
The MaxDimLevel of these devices is 15, but FlatZ sends 0 - 100.
Can you insert a extra variable for setting the max dim level?
So if max is 15 the level send with the dim command is not eg 40 but 40*(MaxDimLevel / 100).
-
- Posts: 27
- Joined: Friday 01 August 2014 23:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 3.5877
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
If you would like to explain how contributing on GitHub works , sure!galadril wrote:Thanks for the help, if you like you can also contribute on the github pagePatrick wrote:In methods.js add on row 558: var tempText = totalText.toLowerCase();
and change row 559 to : if (filter.length <= 0 || tempText.indexOf(filter) >= 0)
- galadril
- Posts: 824
- Joined: Monday 07 September 2015 10:32
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: FlatZ Frontpage
You can change the code via Github Desktop (for example)Patrick wrote:If you would like to explain how contributing on GitHub works , sure!
https://desktop.github.com/
How-to:
https://guides.github.com/activities/co ... en-source/
Solar panels of Ginlong, Omnik-Solar, Transenergy or Solarman?? Try my Android app:
https://play.google.com/store/apps/deta ... ongmonitor
https://play.google.com/store/apps/deta ... ongmonitor
-
- Posts: 27
- Joined: Friday 01 August 2014 23:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 3.5877
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
Got Github installed and started learning the Gitgaladril wrote:You can change the code via Github Desktop (for example)Patrick wrote:If you would like to explain how contributing on GitHub works , sure!
https://desktop.github.com/
How-to:
https://guides.github.com/activities/co ... en-source/
I will add the case-insensitive code as a trial.
- galadril
- Posts: 824
- Joined: Monday 07 September 2015 10:32
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: FlatZ Frontpage
Cool!Patrick wrote:I will add the case-insensitive code as a trial.
Solar panels of Ginlong, Omnik-Solar, Transenergy or Solarman?? Try my Android app:
https://play.google.com/store/apps/deta ... ongmonitor
https://play.google.com/store/apps/deta ... ongmonitor
-
- Posts: 27
- Joined: Friday 01 August 2014 23:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 3.5877
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
I guess I've done thing the right way?galadril wrote:Cool!Patrick wrote:I will add the case-insensitive code as a trial.
How can I see what you're working on? So we don't do things twice
- galadril
- Posts: 824
- Joined: Monday 07 September 2015 10:32
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: FlatZ Frontpage
At this moment there is one 'master' branche of FlatZ frontpage and I've nothing open.Patrick wrote:How can I see what you're working on? So we don't do things twice
When I'm working on it, I'm first making a new branche of it, then do my code changes.. and then if it;s finished merge the code back to the master.
When I've a second development branche open, you can see that in Git Desktop (not at the moment..)
Solar panels of Ginlong, Omnik-Solar, Transenergy or Solarman?? Try my Android app:
https://play.google.com/store/apps/deta ... ongmonitor
https://play.google.com/store/apps/deta ... ongmonitor
-
- Posts: 27
- Joined: Friday 01 August 2014 23:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 3.5877
- Location: The Netherlands
- Contact:
Re: FlatZ Frontpage
Ok.galadril wrote:At this moment there is one 'master' branche of FlatZ frontpage and I've nothing open.Patrick wrote:How can I see what you're working on? So we don't do things twice
When I'm working on it, I'm first making a new branche of it, then do my code changes.. and then if it;s finished merge the code back to the master.
When I've a second development branche open, you can see that in Git Desktop (not at the moment..)
Tonight I will try to fix the Kaku dimmer problem (If the wife doesn't mind me testing it all the time )
-
- Posts: 113
- Joined: Thursday 20 November 2014 22:11
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: Norway
- Contact:
Re: FlatZ Frontpage
Great forntpage, I'm trying it out now.
But I can't the lights page do display correctly, It seems like it gets broken. I only see the menu at top, and a white page under with six lightbulbs and a switch icon.
Also I can't display the weather, but the page loads correctly it seems.
All other pages seems to be correct.
But I can't the lights page do display correctly, It seems like it gets broken. I only see the menu at top, and a white page under with six lightbulbs and a switch icon.
Also I can't display the weather, but the page loads correctly it seems.
All other pages seems to be correct.
2xRaspberry Pi Model 2 w/RaZberry z-wave chip (master/slave)|Fibaro Wall Plug|Fibaro Universal Dimmer 500W|Aeon Labs Multisensor|RFXtrx433E|Nexa WMR-1000|Nexa Pe-3|Nexa Remote|Nexa LGDR3500|Lightify Gateway|Lightify RGBW bulb
- galadril
- Posts: 824
- Joined: Monday 07 September 2015 10:32
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Contact:
Re: FlatZ Frontpage
Do you see errors in the console of your browser (f12, then choose console.. and reload the page)
Solar panels of Ginlong, Omnik-Solar, Transenergy or Solarman?? Try my Android app:
https://play.google.com/store/apps/deta ... ongmonitor
https://play.google.com/store/apps/deta ... ongmonitor
-
- Posts: 113
- Joined: Thursday 20 November 2014 22:11
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: Norway
- Contact:
Re: FlatZ Frontpage
Yesgaladril wrote:Do you see errors in the console of your browser (f12, then choose console.. and reload the page)
Code: Select all
ReferenceError: $ is not defined settings.js:2:0
ReferenceError: $ is not defined noty.js:1:0
ReferenceError: jQuery is not defined jquery-ui.min.js:6:51
ReferenceError: $ is not defined lights.html:215:9
2xRaspberry Pi Model 2 w/RaZberry z-wave chip (master/slave)|Fibaro Wall Plug|Fibaro Universal Dimmer 500W|Aeon Labs Multisensor|RFXtrx433E|Nexa WMR-1000|Nexa Pe-3|Nexa Remote|Nexa LGDR3500|Lightify Gateway|Lightify RGBW bulb
Who is online
Users browsing this forum: No registered users and 0 guests