2010-12-14 46 views
0

Je rencontre un problème d'alignement d'élément dans FooterTemplate de GridView. Tout le monde me suggérer comment faire it.The code est:Comment faire pour aligner l'élément de bas de page dans GridView

<asp:GridView ID="gvComment" runat="server" AutoGenerateColumns="false" 
OnRowDataBound="gvComment_RowDataBound" OnRowCreated="gvComment_RowCreated" Width="100%" ShowHeader="false" BorderWidth="0px" ShowFooter="true"> 
<Columns> 
    <asp:TemplateField> 
     <ItemTemplate> 
      <table border="0" cellpadding="0" cellspacing="0" width="100%" > 
       <tr> 
        <td valign="middle" align="left" style="width:10%"><img id="imgUser" src="" alt="" title="" runat="server" /></td> 
        <td align="left" valign="top"> 
         comment comment 
         <asp:Label ID="lblNameComments" runat="server" Visible="false" ></asp:Label> 
        </td> 
       </tr> 
       <tr><td colspan="2" style="height:7px;"></td></tr> 
       <tr> 
        <td colspan="2" style="padding-top:10px;background-image:url(../Images/dotted_line.jpg);background-repeat:repeat-x;background-position:center;"></td> 
       </tr> 
       <tr><td colspan="2" style="height:7px;"></td></tr> 
      </table>    
     </ItemTemplate> 
    </asp:TemplateField> 
    <asp:TemplateField> 
     <FooterTemplate > 
     <table border="0" cellpadding="0" cellspacing="0" width="100%" > 
      <tr> 
       <td align="left"> 
        Footer Text 
        Footer Text 
        Footer Text   
       </td> 
      </tr> 
     </table> 
     </FooterTemplate> 
    </asp:TemplateField> 
</Columns> 
</asp:GridView> 

J'ai mis propriété align de td gauche, mais il ne sort pas work.Page montré dans l'image.

alt text

Répondre

0

Avez-vous essayé d'ajouter align="left" sur la table de <FooterTemplate >?

<table border="0" cellpadding="0" cellspacing="0" width="100%" align="left"> 
<tr> 
    <td align="left"> 
     Footer Text 
     Footer Text 
     Footer Text   
    </td> 
</tr> 
</table> 
+0

Yeah! J'ai essayé mais je ne travaillais pas. – Sukhjeevan

+0

En fait, il y avait quelques problèmes d'alignement.Maintenant, je l'ai fait.Merci Adrian. – Sukhjeevan