(1) Does the HTML container (div) for a dashboard need to be the HTML parent of the <div> containers of its graphs/controls?
<div id='dashboard'>
<div id="google vis Table">...</div>
<div id="google vis controlWrapper">,,,</div>
</div>
(2) Or wold something like this work?
<div id="dashboard" style="top:0px, left:0px, height:800px, width:800px">..</div>
<div id="google vis Table" style="top:0px; left:0px; height:300px; width:300px">....</div>
<div id="google vis controlWrapper" style="top:0px; left:400px; height:300px; width:300px">....</div>
I have tried something like (2) and am having a problem getting the controller to 'talk' to the table.
It's possible I have some other kind of connectivity error. I thought this may be a possibility, but would like to be sure before rewriting a lot of code.
Does anyone know if (2) is definitely not correct?
thank you.