问题描述:
我们想通过自定义DevExpress GridView控件,实现对部分列添加摘要。但是我们面临一个问题,就是不能在页脚行摘要之前添加标签。
如下图所示,我们想在红色标注区域添加标签或者只是文本信息如“点/天”。
你能给一些建议吗?我是不是应该使用SetFooterRowTemplateContent方法吗?
解决方法:
使用SetFooterRowTemplateContent和SetPagerBarTemplateContent方法自定义页眉和页脚。你可以在Grid View中找到一个例子-模板演示。
另外,您还可以使用GridViewSettings.SettingsPager属性来自定义页眉。例如:
[C#]
Html.DevExpress().GridView(
settings =>
{
...
settings.SettingsPager.Position = PagerPosition.TopAndBottom;
settings.SettingsPager.FirstPageButton.Visible = true;
settings.SettingsPager.LastPageButton.Visible = true;
settings.SettingsPager.Summary.Text = "{0} - {1}";
})
.Bind(Model)
.Render();
本站文章除注明转载外,均为本站原创或翻译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:DevExpress控件中文网 [https://www.devexpresscn.com/]
本文地址:https://www.devexpresscn.com/post/192.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:DevExpress控件中文网 [https://www.devexpresscn.com/]
本文地址:https://www.devexpresscn.com/post/192.html