I'm using the sample you provided for RadListView with the following code
There are a few issues:
1. I cannot see the "Open Layout Editor" in design time
2. How can I make the result show more than 3 columns? It seems the definition is in your Telerik css that I don't have access to.
3. The DataPager is not working.
Thanks for your help.
<telerik:RadListView ID="listViewProducts" runat="server" onneeddatasource="listViewProducts_NeedDataSource" ItemPlaceholderID="ProductsHolder" DataKeyNames="ProductCatalogID" Width="1200px"> <AlternatingItemTemplate> <div class="rlvA" style="height: 150px; width: 220px; margin-top: 5px; margin-left: 5px; margin-right: 5px; margin-bottom: 5px; padding-left: 15px;"> <asp:Panel ID="pnl" runat="server" Width="220px" CssClass="header4" > <b> <%#Eval("Products")%></b> <div style="padding-left:20px;padding-top:20px;" > <asp:ImageButton ID="ImageButton1" ImageUrl="~/Images/Product.jpg" PostBackUrl='<%# Eval("Link")%>' runat="server" /> </div> </asp:Panel> </div> </AlternatingItemTemplate> <ItemTemplate> <div class="rlvI" style="height: 150px; width: 220px; margin-top: 5px; margin-left: 5px; margin-right: 5px; margin-bottom: 5px; padding-left: 15px;"> <asp:Panel ID="pnl" runat="server" Width="220px" CssClass="header4"> <b><%#Eval("Products")%></b> <div style="padding-left:20px;" > <asp:ImageButton ID="btnSample" ImageUrl="~/Images/Product.jpg" PostBackUrl='<%# Eval("Link")%>' runat="server" /> </div> </asp:Panel> </div> </ItemTemplate> <EmptyDataTemplate> <div class="RadListView RadListView_Windows7"> <div class="rlvEmpty"> There are no items to be displayed.</div> </div> </EmptyDataTemplate> <LayoutTemplate> <div class="RadListView RadListViewFloated RadListView_Windows7"> <div class="rlvFloated rlvAutoScroll"> <div id="ProductsHolder" runat="server"> </div> </div> <telerik:RadDataPager ID="RadDataPager1" runat="server" PageSize="7"> <Fields> <telerik:RadDataPagerButtonField FieldType="Numeric" /> </Fields> </telerik:RadDataPager> </div> </LayoutTemplate> </telerik:RadListView>There are a few issues:
1. I cannot see the "Open Layout Editor" in design time
2. How can I make the result show more than 3 columns? It seems the definition is in your Telerik css that I don't have access to.
3. The DataPager is not working.
Thanks for your help.
