ControlStyle-Width
そのため、テンプレートフィールドの幅を7か所(、、、、、、および最後に)ItemStyle-Width
で定義しようとしましたが、それでもコンテンツ( "1400 kr")をラップします。ここで何が問題なのですか?HeaderStyle-Width
ControlStyle Width
ItemStyle Width
TextBox Width
css
<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;
}