更改 RadGrid 中自动生成的数据绑定列的标题文本
如何更改 RADGRID 中自动生成的数据绑定列的标题文本。我正在加载一个数据集,其中的列是自动生成的(Wgt1、Wgt2、Wgt3......)。我希望这些列标题为
Wgt | ABC |重量 | EDG | Wgt |....... 目前将作为
Wgt1 | 出现ABC |工作组2 | EDG | Wgt3 |......
我尝试了
If (TypeOf e.Item Is GridDataItem) then
对于 e.Item.OwnerTableView.RenderColumns 中的每一列 1 作为 GridColumn
将数据项变暗为 GridDataItem = DirectCast(e.Item, GridDataItem)
如果column1.HeaderText = "Wgt1"则
dataItem("Wgt1").Text = "Wgt"
结束如果
下一步
结束如果
但这正在更改列数据而不是标题文本
How can i change the Header Text of Autogenerated DataBound Columns in RADGRID. I am loading a dataset whoz columns are autogenerated (Wgt1,Wgt2,Wgt3.......). I want these Column Headers as
Wgt | abc | Wgt | edg | Wgt |....... which at the moment is coming as
Wgt1 | abc | Wgt2 | edg | Wgt3 |.......
I tried
If (TypeOf e.Item Is GridDataItem) Then
For Each column1 As GridColumn In e.Item.OwnerTableView.RenderColumns
Dim dataItem As GridDataItem = DirectCast(e.Item, GridDataItem)
If column1.HeaderText = "Wgt1" Then
dataItem("Wgt1").Text = "Wgt"
End If
Next
End If
But this is changing the Column Data and not the Header Text
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)