本文介绍了如何在网格视图中设置boundfeld列的宽度和高度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<asp:GridView ID="gv_AparamType" runat="server" AutoGenerateColumns="False"

                               CssClass="mytable" EmptyDataText="No Records found"

                   Width="50px" onselectedindexchanged="gv_fstAp_SelectedIndexChanged">
                               <Columns>
                                   <asp:BoundField DataField="SlNo" HeaderText="SL NO" />
                                   <asp:BoundField DataField="Module" HeaderText="MODULE" />
                                   <asp:BoundField DataField="ParamType" HeaderText="PARAMETERTYPE" />
                                   <asp:BoundField DataField="ParamValue" HeaderText="PARAMETERVALUE" ItemStyle-Width="10px" HeaderStyle-Width="10px" FooterStyle-Width="10px"  ItemStyle-HorizontalAlign="left" />

                                   <asp:TemplateField HeaderText="Edit">
                                       <ItemTemplate>
                                           <asp:ImageButton ID="ibtn_Edit" runat="server"

                                               ImageUrl="~/StyleLibrary/images/icon-edit.gif"  />
                                       </ItemTemplate>
                                   </asp:TemplateField>





即使我尝试了itemstylewidth,但它也不起作用,并且我正在使用数据表绑定表中的数据,请帮助我





even i tried itemstylewidth but its not working and i am binding data from table using data table please help me

推荐答案

ItemStyle-Width="500px"




为文本提供足够的宽度大小.




Give the enough width size for the Text.


这篇关于如何在网格视图中设置boundfeld列的宽度和高度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 13:35