asp.net - asp: Gridview footer row on top of items? -


i'm sorry dumb question there way display gridview footer row below header , above gridview rows?

i've tried using css:

position: absolute; top: 82px; width: 44%; 

and worked,

issue:

if have more 1 gridview on page, gridview1 above gridview2. page messed because of position: absolute;

is there way display footer below header without using css code?

you use different css class each gridview - each it's own position values.

however, using absolute position footer of each gridview sounds quite brittle.

i think better solution put relevant information in header - sounds should be.

if use <asp:templatefield> , <headertemplate> can quite lot of control on what's in header.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -