Display a webpage in dhtmlxLayout

Hi

how do i get a page to display in column A.

i got it as this, but still not showing.

:open_mouth:

Hi
You are doing right.
If you need to get this page (or some element from it), you can use the next:

dhxLayout = new dhtmlXLayoutObject('parentId',"3U"); dhxLayout.cells("a").attachURL('content_.html'); var ifr = dhxLayout.cells("a").getFrame(); var a = ifr.contentWindow.document.getElementById("content");

Hi

i got it to work, but will only work with pages in the dir, not external pages.

ex.

		var b = dhxLayout.cells('b');
				b.hideHeader();
				b.attachURL('main.html')    \\WORKS

		var b = dhxLayout.cells('b');
				b.hideHeader();
				b.attachURL('http://www.google.com')    \\not working?????? :open_mouth: 

thank you

Hi
Google doesn’t allow to load its page in iframe.
We aren’t responsible for it.