I have two Listview's. They are populated the same was. One does not give any evidence of getting any data. HELP!
Here is the definition of the one that has no data:
Here is the definition of the one that has no data:
<telerik:RadListView ID="RadListView2" runat="server" AllowPaging="True" ItemPlaceholderID="ListPlaceHolder" Skin="listview_2" EnableEmbeddedSkins="false" DataKeyNames="id,filenameextension,typeAbbr,title" OnNeedDataSource="RadListView2_NeedDataSource"> <LayoutTemplate> <table id="products" class="products"> <thead> <tr> <th> Prev </th> <th class="expand"> </th> <th> File Name </th> <th> Asset Type </th> <th> Document Type </th> <th> Advertiser Name </th> <th> Advertiser Category </th> <th> Details </th> <th> Market </th> <th> Product Category </th> <th> Keywords </th> <th> Approved </th> <th> Date </th> </tr> </thead> <tbody> <tr id="ListPlaceHolder" runat="server"> </tr> </tbody> </table> </LayoutTemplate> <ItemTemplate> <tr> <td> <%# String.Format("javascript:Popup_Window('asset_preview', '{0}');", Eval("id").ToString())%> </td> <td> <asp:CheckBox ID="ChkImage2" runat="server" Style="float: left; padding-top: 5px" /> </td> <td> <%# String.Format("javascript:Popup_Window('asset_detail', '{0}');", Eval("id").ToString())%> </td> <td> <%# Eval("typeAbbr")%> </td> <td> <%# Eval("documentTypeText")%> </td> </tr> </ItemTemplate> <EmptyDataTemplate> No Assets Found 2 </EmptyDataTemplate></telerik:RadListView>