I have a iframe html element in my screen, that can load and unload various blocks in it through an input parameter Source. How can I pass block as a source to it?
I believe I Frames need a screen URL. Perhaps put all the blocks on one screen, and an input parameter to determine what block is shown. The URL to the screen will need an input parameter to determine what block is shown
On the screen with the blocks, you can have lots of if statements to ensure only one block is shown in the iFrame
If In1 =1
Block1
If In1 = 2
Block2
etc
Hi @edTheEngineer,
With your approach, all the blocks will be loaded on the screen, but only a specific block will be shown as per the input parameter. But, in this case, all blocks will be loaded in the memory.I need a approach to load a particular block only in iframe HTML element.
Thanks!