I've successfully created a radgrid which uses client-side data-binding. In this radgrid I have one databoundcolumn:
| <telerik:GridBoundColumn DataField="FullName" HeaderText="FullName" |
| SortExpression="FullName" UniqueName="FullName"> |
| </telerik:GridBoundColumn> |
I would like to add more types of column in this radgrid, for instance a gridbuttoncolumn. However, when I try this code:
| <telerik:GridButtonColumn HeaderText="FullName" DataTextField="FullName" |
| Text="FullName" DataType="System.String" UniqueName="FullName"></telerik:GridButtonColumn> |
the column is always empty.
Can someone tell me how to add other column types using client-side data-binding?