ControlStyle-Widthそのため、テンプレートフィールドの幅を7か所(、、、、、、および最後に)ItemStyle-Widthで定義しようとしましたが、それでもコンテンツ( "1400 kr")をラップします。ここで何が問題なのですか?HeaderStyle-WidthControlStyle WidthItemStyle WidthTextBox Widthcss
<asp:TemplateField HeaderText="Totalt" ControlStyle-Width="100" ItemStyle-Width="100" ItemStyle-Wrap="True" HeaderStyle-Width="100" ControlStyle-CssClass="wide">
<ItemTemplate>
<asp:TextBox ID="tbTotalPrice" runat = server ReadOnly="true" Width="100px"></asp:TextBox>
</ItemTemplate>
<ControlStyle Width="100px" />
<ItemStyle HorizontalAlign="Right" Width="100px" />
</asp:TemplateField>
スタイルシート:
.wide {
width: 120px;
column-width: 120px;
}