Dynamic iFrame Height

I have iframed a Visualforce page into a template field using the following code:

```Example 2<br alt="" name="" rel="" target="" title="" type="" value="" /><br alt="" name="" rel="" target="" title="" type="" value="" />In the <head> put:<br alt="" name="" rel="" target="" title="" type="" value="" /><pre alt="" name="" rel="" target="" title="" type="" value=""><code alt="" name="" rel="" target="" title="" type="" value=""><script> function resizeIframe(obj) { obj&#46;style&#46;height = obj&#46;contentWindow&#46;document&#46;body&#46;scrollHeight + &#39;px&#39;; } </code></script>
```Change the iframe to be:<br alt="" name="" rel="" target="" title="" type="" value="" /><pre alt="" name="" rel="" target="" title="" type="" value=""><iframe src="&#46;&#46;&#46;" frameborder="0" scrolling="no" onload="resizeIframe(this)" />
```I've tried to put these into various places in the template field, but so far nothing has worked.  Do you know if this is possible in Skuid?

Hi Sean, I hope you’re well. Are you still experiencing this issue?

It seems like it may be possible to accomplish this in Skuid using some of Example 2: