can I display one grid near an image?
Can I display on left a grid of items of 500 px and on right a image of 300 px?
The data is load dynamic and this is the code to create the grid
<script>
var obj = new Active.Controls.Grid;
obj.setRowProperty("count", 86);
obj.setColumnProperty("count", 15);
obj.setDataProperty("text", function(i, j){return myData[i][j]});
obj.setColumnProperty("text", function(i){return myColumns[i]});
obj.setRowHeaderWidth("28px");
obj.setColumnHeaderHeight("20px");
document.write(obj);
</script>
The first column of the grid is an html link. When I click the link in one row I must load the image
correspondent. The image in load in f3 iframe, include in this code
<div id="listaUtil">
<div class="img-bar"><span class="print">Immagine</span></div>
<div><iframe name="f3" id="f3" frameborder="0" scrolling="auto"></iframe></div>
</div>
The result is the grid in the top of the page and the image in the bottom, is possible
locate the grid on left and another div element on right?
Thanks a lot.
Mickey
The data is load dynamic and this is the code to create the grid
<script>
var obj = new Active.Controls.Grid;
obj.setRowProperty("count", 86);
obj.setColumnProperty("count", 15);
obj.setDataProperty("text", function(i, j){return myData[i][j]});
obj.setColumnProperty("text", function(i){return myColumns[i]});
obj.setRowHeaderWidth("28px");
obj.setColumnHeaderHeight("20px");
document.write(obj);
</script>
The first column of the grid is an html link. When I click the link in one row I must load the image
correspondent. The image in load in f3 iframe, include in this code
<div id="listaUtil">
<div class="img-bar"><span class="print">Immagine</span></div>
<div><iframe name="f3" id="f3" frameborder="0" scrolling="auto"></iframe></div>
</div>
The result is the grid in the top of the page and the image in the bottom, is possible
locate the grid on left and another div element on right?
Thanks a lot.
Mickey
Mickey
September 4,