I have a simple page with a toolbar on the masterpage and a treeview in the content page
I'm getting this error in firebug when paging, and doing random things like sorting
Any idea?
I'm getting this error in firebug when paging, and doing random things like sorting
<%@ Page Title="" Language="C#" MasterPageFile="~/App_Master/Medportal.master" AutoEventWireup="true" CodeBehind="TreeList.aspx.cs" Inherits="Medportal.Skins.Medportal.Controls.TreeList" %><asp:Content ID="Content1" ContentPlaceHolderID="HeaderContent" runat="server"></asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="BodyContent" runat="server"> <telerik:RadTreeList runat="server" DataKeyNames="locationID" DataSourceID="locationsDS" ParentDataKeyNames="parentID" AllowMultiColumnSorting="True" AllowPaging="True" AllowSorting="True" PageSize="15" ShowFooter="True" > <PagerStyle Mode="NextPrevNumericAndAdvanced" /> </telerik:RadTreeList> <asp:SqlDataSource ID="locationsDS" runat="server" ConnectionString="<%$ ConnectionStrings:authdbConnectionString %>" SelectCommand="SELECT [locationID], [locationName], [parentID], [shortcode], [isTest], [addressID] FROM [common_location] ORDER BY [locationName]" /></asp:Content>Any idea?