how to make a column width size fixed in datagridview asp?
        Posted  
        
            by 
                user306671
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user306671
        
        
        
        Published on 2010-12-29T22:32:46Z
        Indexed on 
            2010/12/29
            22:54 UTC
        
        
        Read the original article
        Hit count: 390
        
Hi, i have this column in a datagridview on aspx page
<asp:TemplateField HeaderText="Observacion">
    <ItemTemplate>
        <asp:Label ID="lblOrderID" runat="server" Text='<%# Eval("Observacion") %>'></asp:Label>
    </ItemTemplate>
    <ItemStyle Width="200px" Wrap="False" />
</asp:TemplateField>
I have set up the itemstyle with and wrap to false, but anyways the width columns grows the the data is too long. i just want to change the height of the column not the width. Here us the complete code of the datagridview
<asp:GridView ID="GridView1" runat="server" AutoGenerateDeleteButton="True" CellPadding="4" EnableModelValidation="True" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False">
    <columns>
        <asp:boundfield datafield="ID_OBSERVACION" visible="False" />
        <asp:boundfield datafield="AUTOR" headertext="Autor" />
        <asp:boundfield datafield="FECHA" headertext="Fecha" />
        <asp:TemplateField HeaderText="Observacion">
        <ItemTemplate>
            <asp:Label ID="lblOrderID" runat="server" Text='<%# Eval("Observacion") %>'></asp:Label>
        </ItemTemplate>
        <ItemStyle Width="200px" Wrap="False" />
        </asp:TemplateField>
    </columns>
    <AlternatingRowStyle BackColor="White" ForeColor="#284775" Wrap="False" />
    <EditRowStyle BackColor="#999999" />
    <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
    <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
    <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
    <RowStyle BackColor="#F7F6F3" ForeColor="#333333" Wrap="False" />
    <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
</asp:GridView>
© Stack Overflow or respective owner