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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top