2023年12月23日 星期六

gridview固定列的寬度並且能換行

 在RowCreated事件中添加

e.Row.Cells[6].Attributes.Add("style", "word-break :break-all ; word-wrap:break-word");


這樣則會讓你選定的列自動換行了 不過前提是要給列設定寬度

<asp:BoundField DataField="Memo" HeaderText="備忘" >

<ItemStyle Width="20%" Wrap="True" />

</asp:BoundField>

前台這樣寫。 注意: Wrap="True" 啊!


上面只能對單一的列其作用。


下面是全域的,寫到CSS裡最好不過了。

GridView.Attributes.Add( "style ", "table-layout:fixed ")

沒有留言:

張貼留言