Page 1 of 1

Multiple Blocks (Devices) Inside Popup

Posted: Monday 15 February 2021 22:58
by Nefsolive
Hello,

How can I place multiple blocks (devices) within the same popup?
It's possible?

Ty

Re: Multiple Blocks (Devices) Inside Popup

Posted: Monday 15 February 2021 23:19
by HansieNL
You can us the parameter popup in a block

Code: Select all

popup: 'container'
And the following block. For example 'one1' and 'two2' are device blocks.

Code: Select all

blocks['container'] = {
  blocks: [ 'one1', 'two2']
}

Re: Multiple Blocks (Devices) Inside Popup

Posted: Tuesday 16 February 2021 1:06
by Nefsolive
HansieNL wrote: Monday 15 February 2021 23:19 You can us the parameter popup in a block

Code: Select all

popup: 'container'
And the following block. For example 'one1' and 'two2' are device blocks.

Code: Select all

blocks['container'] = {
  blocks: [ 'one1', 'two2']
}
Hello HansieNL,
Thank u! That's what I was looking for.

Regards