Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Alignment problem in the datagrid

Reply
Thread Tools

Alignment problem in the datagrid

 
 
Vannela
Guest
Posts: n/a
 
      12-15-2003
I want the textboxes to be aligned vertically in the
header template of the datagrid ? how is it possible
Please give me some code snippets.

Thank you
 
Reply With Quote
 
 
 
 
Carl Prothman [MVP]
Guest
Posts: n/a
 
      12-15-2003
Vannela wrote:
> I want the textboxes to be aligned vertically in the
> header template of the datagrid ? how is it possible
> Please give me some code snippets.
>


Why are you putting textboxes in the header Template?

You can always use a HTML Table to position the textboxes
<HeaderTemplate>
<table border="0" cellpadding="0" cellpadding="0">
<tr>
<td>
<asp:TextBox id="TextBox1" runat="server" />
</td>
</tr>
<tr>
<td>
<asp:TextBox id="Textbox2" runat="server" />
</td>
</tr>
</table>
</HeaderTemplate>

--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP
http://www.able-consulting.com



 
Reply With Quote
 
 
 
 
Vannela
Guest
Posts: n/a
 
      12-16-2003
Thank you

Thanks you

>-----Original Message-----
>Vannela wrote:
>> I want the textboxes to be aligned vertically in the
>> header template of the datagrid ? how is it possible
>> Please give me some code snippets.
>>

>
>Why are you putting textboxes in the header Template?
>
>You can always use a HTML Table to position the textboxes
> <HeaderTemplate>
> <table border="0" cellpadding="0" cellpadding="0">
> <tr>
> <td>
> <asp:TextBox id="TextBox1" runat="server" />
> </td>
> </tr>
> <tr>
> <td>
> <asp:TextBox id="Textbox2" runat="server" />
> </td>
> </tr>
> </table>
> </HeaderTemplate>
>
>--
>
>Thanks,
>Carl Prothman
>Microsoft ASP.NET MVP
>http://www.able-consulting.com
>
>
>
>.
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Text Alignment in DataGrid Edit TextBox rn5a@rediffmail.com ASP .Net 6 11-30-2006 02:28 PM
Text Alignment In DataGrid? Arpan ASP .Net 7 09-01-2006 08:02 AM
Different header and text alignment in winform datagrid ?? Deep Silent Ocean ASP .Net Datagrid Control 0 09-30-2005 04:22 AM
Different header and text alignment in winform datagrid ?? Deep Silent Ocean ASP .Net Building Controls 0 09-30-2005 04:21 AM
boundcolumn property for alignment inside datagrid cell Chumley Walrus ASP .Net 1 06-08-2005 04:20 PM



Advertisments