获取 Telerik Grid 列标题文本
我需要重命名我的网格标题文本。我的网格使用自动生成的列生成。我正在数据表中获取数据并将其分配给网格。分配给网格后,我使用一个在 databind() 之后调用的函数,它格式化网格单元格,但不格式化 HeaderText。
有人可以帮我解决这个问题吗?
foreach (GridColumn column in grdTestCertificate.Columns)
{
string[] strColumn = column.HeaderText.Split('|');
column.HeaderText = strColumn[1];
}
它返回 0 列数。
I need to rename my grid headertext. My grid generate using autogenerated columns.i am getting data in Datatable and assigning it to grid. after assigning to grid i am using a function which called after databind() and it format the grid cells but not HeaderText.
Can anybody help me out for this problem?
foreach (GridColumn column in grdTestCertificate.Columns)
{
string[] strColumn = column.HeaderText.Split('|');
column.HeaderText = strColumn[1];
}
it return 0 counts of columns.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊,我找到了解决方案,
如果您找到了解决方案,请指出我的答案。
aah i got the solutions,
Point up my answer if you got your solution.