Layout problem with tracing

  • Thread starter Thread starter John Smith Jr.
  • Start date Start date
J

John Smith Jr.

I placed a DataGrid and Button on a form and databound it, I turned on Trace
for the page, and the trace output starts at the top of the page, and the
DataGrid/Button sits directly on top of it, how do I get it to show up at
the end of the datagird and not underneath it?
 
John Smith Jr. said:
I placed a DataGrid and Button on a form and databound it, I turned on Trace
for the page, and the trace output starts at the top of the page, and the
DataGrid/Button sits directly on top of it, how do I get it to show up at
the end of the datagird and not underneath it?

You are using an absolute placed control so you are covering anything behind
it. You can simply put in a bunch of <BR> at the bottom of your page and a
div with a height that is longer than the grid. You will probably have to
put that in in HTML edit mode.
 
I hope this is not duplicated, I posted a reply but did not see it show up
for an hour
while others did. So if this is a duplicate, sorry!

You are using an absolute placed control so you are covering anything behind
it. You can simply put in a bunch of <BR> at the bottom of your page and a
div with a height that is longer than the grid. You will probably have to
put that in in HTML edit mode.
 
Back
Top