Hello, I’m using your demo 03_fullscreen example and have modified it to the attached. I would like to have cell “b” show the scroll bar when the page is resized. I’ve used the myPageLayout.cells(“b”).showInnerScroll() but it does not seem to work very well. Any suggestions would be greatly appreciated.
+++++++++++++++++++++++++++++++++++++++
Fullscreen init html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; background-color: #ebebeb; overflow: hidden; } var myLayout, myLayout2, myLayout3; function doOnLoad() { myLayout = new dhtmlXLayoutObject({ parent: document.body, pattern: "1C" }); myLayout.cells("a").hideHeader();
myPageLayout = myLayout.cells("a").attachLayout({
parent: "page_layout",
pattern: "2U",
cells: [
{id: "a", text: "a", header:true},
{id: "b", text: "b", header:false}
]
});
myPageLayout.cells("b").showInnerScroll();
myLayout2 = myPageLayout.cells("b").attachLayout({
pattern: "5E",
cells: [
{id: "a", text: "a", header:true},
{id: "b", text: "b", header:true},
{id: "c", text: "c", header:true},
{id: "d", text: "d", header:true},
{id: "e", text: "e", header:true}
]
});
}
</script>
+++++++++++++++++++++++++++++++++++++++++++++++++
Steve