grid view

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

I would like to place a label control so it appears immediately below a
gridview.

How can I make the label shift up or down according to the number of rows in
the gridview? The label just gets buried under the gridview if it grows.

I don't want to use paging in the gridview, because users want to print the
page with all the contents of the gridview.

Thanks!
 
Hi,

why don't you just place it on top of the GridView if you don't want it's
place to change? What does it show to the user?
 
Hi Bill,

You can put gridview inside a div tags and put label after the div. Then use
javascript code to print the content in div.

HTH

Elton Wang
 
I tried that, but the label control retains its position when the grid
expands. Unless I put a scrollbar on the div, but they need to print the
entire page, not just the div content.
 
Change page layout from GridLayout to FlowLayout

Remove

style="Z-INDEX: 101; LEFT: ###px; POSITION: absolute; TOP: ###px"

from controls
 
Thanks, that seems to work pretty well after some fiddling around.

I appreciate your help.

-Bill
 

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