then you have to use this coding (eg. '211a') also in columns definitions and in custom.css if it's used to change some attributes?
It does not work for me!
I have defined
Code: Select all
blocks['327a'] = {}
blocks['327a']['title'] = 'Temp Esterna' //if you want change the name of switch different then domoticz
blocks['327a']['width'] = 6; //if you want an other icon instead of the default, choose from: http://fontawesome.io/cheatsheet/
blocks['327a']['show_lastupdate'] = false; //if you want an other icon instead of the default, choose from: http://fontawesome.io/cheatsheet/
blocks['327a']['switch'] = true; //if you want an other icon instead of the default, choose from: http://fontawesome.io/cheatsheet/
Code: Select all
columns[5]['blocks'] = ['blocktitle_3', '327a'] //remark: idx 144 produces 2 blocks, so you can use: '144_1' and '144_2' (or just 144 if you want one)
Code: Select all
.transbg.block_327a{
text-align: center !important;
vertical-align: middle;
font-size: 16px !important;
font-weight: 900 !important;
color: yellow;
}
If I have in the blocks the definition '327a' and leave in columns and custom.css the '327_1' I see the values switched, but I have lost the width of the block because is defined in '327a' and not in '327_1'.
Really strange!