Page 6 of 48

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 12:32
by mvveelen
Do you have

Code: Select all

var _DO_NOT_USE_COLORED_TRASHCAN 	= false;
in your CONFIG.js ?

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 20:44
by htilburgs
Currently my Trashcan plugin won't load, it's only saying "Loading......"
Has anybody else this problem right now?

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 20:45
by robgeerts
geertvercamer wrote:Thanks Sonar, figured that out around midnight and would post it this morning.

And thanks to Rob, of course!

Working in latest beta! :)
In config.js use:

Code: Select all

var trashcan = {}
trashcan.ophaalkalender = { trashapp: 'ophaalkalender', width:12,street:'Door Verstraetelei',zipcode:'2930', country:'BE' }
@others:
Can someone provide me a font for a 'wheelie bin' (kliko) ?
Just like FontAwesome but the with an icon for the bin in it?
This way we doent have to use a set of png's with fixed colors...

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 20:45
by robgeerts
htilburgs wrote:Currently my Trashcan plugin won't load, it's only saying "Loading......"
Has anybody else this problem right now?
Please send me the piece of code of the trashcan in config.js..

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 21:07
by htilburgs
robgeerts wrote: @others:
Can someone provide me a font for a 'wheelie bin' (kliko) ?
Just like FontAwesome but the with an icon for the bin in it?
This way we doent have to use a set of png's with fixed colors...
Just submitted a request at FontAwesome for a new font 'fa-wheelie-bin' ;)

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 21:44
by capman
robgeerts wrote:
geertvercamer wrote:Thanks Sonar, figured that out around midnight and would post it this morning.

And thanks to Rob, of course!

Working in latest beta! :)
In config.js use:

Code: Select all

var trashcan = {}
trashcan.ophaalkalender = { trashapp: 'ophaalkalender', width:12,street:'Door Verstraetelei',zipcode:'2930', country:'BE' }
Thanks Rob , working like charm !! My happy now :D never forget to set the bin outside .

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 22:03
by sonar
capman wrote:Thanks Geert to figured this out. This dashboard goes still better and better ... also thanks to Rob !
@ Sonar , how did you become to this url ? Did you find this in some code when using the F12 on that page ? Also thanks for this :D
Yes found it when using F12. When searching for an address these two URL's were visible in the console tab.

Re: Dashticz - Module - Garbage collector

Posted: Sunday 14 May 2017 22:44
by jake
Since 2-3 days I have for my 'HVC-address' garbage block 3 rows (my limit) of GFT on Monday. When I change max to 10, I get 3 rows of GFT, followed by 3 or 4 rows of 'Plastic' and 4 rows of 'Restafval' with their respective dates.

Re: Dashticz - Module - Garbage collector

Posted: Monday 15 May 2017 18:02
by geertvercamer
Thanks for the 'ophaalkalender' for Belgium.

Just a somewhat off topic question: wouldn't it be useful to define the URL of the cross-origin service also in the config.js. When one service gets out of service, the switch could be easy and swift. Also nice for the people with their own service running.

Re: RE: Re: Dashticz - Module - Garbage collector

Posted: Wednesday 17 May 2017 23:03
by jake
jake wrote:Since 2-3 days I have for my 'HVC-address' garbage block 3 rows (my limit) of GFT on Monday. When I change max to 10, I get 3 rows of GFT, followed by 3 or 4 rows of 'Plastic' and 4 rows of 'Restafval' with their respective dates.
Am I the only one with this strange behaviour for the garbage pickup? Multiple instances of the same day?

Code: Select all

var trashcan = {}
trashcan.hvc = { maxitems: 10, trashapp: 'hvc', width:6, zipcode:'3317hl', housenumber:'1'  }

var trashnames = {}
trashnames['Rest'] = 'Restafval';
trashnames['Gft'] = 'GFT';
trashnames['Pmd'] = 'Plastic';

var trashcolors = {}
trashcolors['Gft'] = 'Lime';
trashcolors['Pmd'] = 'Orange';

var _DO_NOT_USE_COLORED_TRASHCAN = true
It doesn't matter what postal code / house number I use within my neighbourhood or adjacent ones, the pick up dates differ, but the behaviour of multiple dates remains.Image

Re: RE: Re: Dashticz - Module - Garbage collector

Posted: Wednesday 17 May 2017 23:27
by jake
jake wrote:I tried to increase the font for all devices in the custom.css, by adding the lines

Code: Select all

.title{
 font-size:15px;
 }
This didn't work for the trashcan block.
Then I looked into the code to increase the font of 1 specific block

Code: Select all

.block_233 {
 font-size:120px !important;
 color:red !important;
 }
and then, hmm... the block definition doesn't seem to cover a trashcan.xyz block
Can we please have font scaling on the garbage bin pickup date list? Would be nice, especially for the lines with a date in them (today and tomorrow are more easy to read with a small font.

Re: RE: Re: Dashticz - Module - Garbage collector

Posted: Thursday 18 May 2017 9:19
by robgeerts
jake wrote:
jake wrote:I tried to increase the font for all devices in the custom.css, by adding the lines

Code: Select all

.title{
 font-size:15px;
 }
This didn't work for the trashcan block.
Then I looked into the code to increase the font of 1 specific block

Code: Select all

.block_233 {
 font-size:120px !important;
 color:red !important;
 }
and then, hmm... the block definition doesn't seem to cover a trashcan.xyz block
Can we please have font scaling on the garbage bin pickup date list? Would be nice, especially for the lines with a date in them (today and tomorrow are more easy to read with a small font.
Try latest beta and add to custom.css

Code: Select all

.trash .state div.trashrow {
    font-size: 12px;
}
.trash .state div.trashtoday {
    font-size: 16px;
}
.trash .state div.trashtomorrow {
    font-size: 14px;
}

Re: Dashticz - Module - Garbage collector

Posted: Thursday 18 May 2017 9:39
by qwerk
and again a nice change.
thanks Rob.

Re: RE: Re: RE: Re: Dashticz - Module - Garbage collector

Posted: Thursday 18 May 2017 21:12
by jake
robgeerts wrote: Try latest beta and add to custom.css

Code: Select all

.trash .state div.trashrow {
    font-size: 12px;
}
.trash .state div.trashtoday {
    font-size: 16px;
}
.trash .state div.trashtomorrow {
    font-size: 14px;
}
Excellent, works like a dream now! Double values are also gone!

Re: Dashticz - Module - Garbage collector

Posted: Sunday 21 May 2017 14:54
by gixxersuperbike
Can you get this one to work ?

http://afvalkalender.rova.nl/

Re: Dashticz - Module - Garbage collector

Posted: Sunday 21 May 2017 17:02
by robgeerts
Just checked but cannot get a json-output.
Or has anybody found this output for Rova?

Re: Dashticz - Module - Garbage collector

Posted: Tuesday 23 May 2017 17:23
by Trigun
@robgeerts,
Hi Rob,

Is there chance you can add https://www.twentemilieu.nl/borne to be part this great feature.
I guess I can't do without as i put the wrong bin outside today :)

Thnx in advance!

Cheers

Re: Dashticz - Module - Garbage collector

Posted: Tuesday 23 May 2017 17:24
by Derik
Is it possible to enlarge the icon?

Re: Dashticz - Module - Garbage collector

Posted: Tuesday 23 May 2017 18:20
by HansieNL
Derik wrote:Is it possible to enlarge the icon?

Code: Select all

.trashcan { 
    height 48px;
    width: 48px;
} 


Re: Dashticz - Module - Garbage collector

Posted: Wednesday 24 May 2017 17:43
by Derik
HansieNL wrote:
Derik wrote:Is it possible to enlarge the icon?

Code: Select all

.trashcan { 
    height 48px;
    width: 48px;
} 

Thanks
Where to place in ccs or under config files..?