gpt4 book ai didi

c# - 将 RadGrid 行高度设置为小于默认值?

转载 作者:太空宇宙 更新时间:2023-11-03 15:13:03 24 4
gpt4 key购买 nike

我试图使每行的高度尽可能小,使用这个 Telerik post作为例子。问题是,如果我将高度设置为大于默认值(在本例中为 150px),它就可以正常工作。如果它在下方,则它不起作用。

我还看了下面的Telerik link ,这(我相信)与我在这里所做的相同(为 ItemStyleAlternatingItemStyle 设置 CssClass),但这对他有用。

此外,此 radgrid 位于 masterpage 上,但这应该没有什么区别。

这是我的 radgrid 标记:

<telerik:RadGrid ID="RadGridSets" runat="server" Width="100%" BorderColor="Silver" 
BorderStyle="Solid" BorderWidth="1px" onprerender="PreRender" >
<MasterTableView AutoGenerateColumns="False" CommandItemDisplay="Top" Font-Size="7"
AllowAutomaticUpdates="true" >
<ItemStyle CssClass="item-style" />
<AlternatingItemStyle CssClass="item-style" />
<CommandItemSettings ShowAddNewRecordButton="false" ShowRefreshButton="false" />
<Columns>
<telerik:GridBoundColumn datafield="carrier" headertext="sugbgroup"/>
<telerik:GridBoundColumn datafield="count" headertext="count"/>
</Columns>
</MasterTableView>
</telerik:RadGrid>

CSS:

<style type="text/css">
.header, .cell
{
display:table-cell;
vertical-align:top;
padding-left:10px; padding-right: 10px;
font-size: 9pt;
border: none;
padding-top: 4px;
}
.even
{
background-color: #b2d3ec;
}
.odd
{
background-color: #d8e9f3;
}
.cell
{
padding-bottom: 5px;
border-bottom: 1px;
}
html .RadMenu .rmRootGroup {
background-image: none;
}

</style>
<style type="text/css">
.RadGrid .item-style td
{
padding-top: 0;
padding-bottom: 0;
height: 10px;
vertical-align: middle;
}
</style>

最佳答案

由于没有人回复,我最终使用了 GridView 控件。

关于c# - 将 RadGrid 行高度设置为小于默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40287455/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com