1

I am using rad:radgrid datagrid control. I need to change column header text dynamically.

I try rgGrid.Columns[0].HeaderText = "Id" and it works fine for GridBoundColumn, but now I need to do the same for GridButtonColumn but it not working

I also try:

<rad:GridButtonColumn HeaderText="<%= stringText %>" > 

but it doesn't work becouse rad controls does not allowed to use <% %>.

Thanks!

4

1 に答える 1

1

私はここで推測していますが、すべての WebControls は ID を設定してから ID でコントロールを呼び出すことができるため、次のことができます。

<rad:GridButtonColumn ID="MyGridButtonColumn"> 

そしてコードビハインドで:

MyGridButtonColumn.MyHeaderText = stringText;
于 2012-07-24T12:54:20.200 に答える