我不知道如何在我的复合控件中动态创建的 GridView 中启用排序。当然,我尝试将 GridView 的 AllowSorting 属性设置为“true”,但它不允许排序功能(标题中没有可以单击的链接按钮)。AllowPaging 属性工作得很好。
任何想法如何解决这个问题?
protected override void OnInit(EventArgs e)
{
innerGridView.AutoGenerateColumns = false;
innerGridView.AllowSorting = true;
innerGridView.AllowPaging = true;
innerGridView.PageSize = 2;
base.OnInit(e);
}