Hi I am programatically binding a list to a radgrid. It works fine if I use GridBoundColumn controls ertc.. but when I want to add my own formatting I do it like this:
It tells me there are no records to display - I know there are records there as I can see them when I step into my code. Why does the above not display my records?
Thanks
| <telerik:RadGrid ShowGroupPanel="true" AllowPaging="true" PageSize="10" AutoGenerateColumns="false" Width="700" ID="RadGrid1" runat="server"> |
| <MasterTableView TableLayout="Fixed" > |
| <ItemTemplate> |
| <%# Eval("Subject") %> |
| <%# Eval("PostDate")%> |
| <%# Eval("Body")%> |
| <%# Eval("TotalViews")%> |
| </ItemTemplate> |
| </MasterTableView> |
| </telerik:RadGrid> |
Thanks