所以我尝试在 7 个地方(ControlStyle-Width
, ItemStyle-Width
, HeaderStyle-Width
, ControlStyle Width
, ItemStyle Width
,TextBox Width
最后在 a css
)中定义模板字段的宽度,但它仍然包裹了内容(“1400 kr”)。这是怎么回事?
<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;
}