Hi !
I'm trying to use Atlas for the first time and i seem to have some problem. I'm juste trying to use paging et sorting without refresh but it doesn't work. I have no error it just doesn't do anything. Here is my code:
<asp:Content ID="Content1" ContentPlaceHolderID="Contenu" Runat="Server">
<atlas:ScriptManager ID="sc2" EnablePartialRendering="true" runat="server"/>
<atlas:UpdatePanel ID="p1" runat="server">
<ContentTemplate>
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" DataKeyNames="RéfIndis" DataSourceID="dsTest">
<Columns>
<asp:BoundField DataField="RéfIndis" HeaderText="RéfIndis" InsertVisible="False"
ReadOnly="True" SortExpression="RéfIndis" />
<asp:BoundField DataField="RéfPosteDeCharge" HeaderText="RéfPosteDeCharge"
SortExpression="RéfPosteDeCharge" />
<asp:BoundField DataField="RéfMachine" HeaderText="RéfMachine" SortExpression="RéfMachine" />
<asp:BoundField DataField="DateDébut" HeaderText="DateDébut" SortExpression="DateDébut" />
<asp:BoundField DataField="DateFin" HeaderText="DateFin" SortExpression="DateFin" />
<asp:BoundField DataField="Motif" HeaderText="Motif" SortExpression="Motif" />
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="dsTest" runat="server" ConnectionString="<%$ ConnectionStrings:OrchestraCI2K %>"
SelectCommand="SELECT [RéfIndis], [RéfPosteDeCharge], [RéfMachine], [DateDébut], [DateFin], [Motif] FROM [Indisponibilités Machines]">
</asp:SqlDataSource>
</ContentTemplate>
</atlas:UpdatePanel>
</asp:Content>
Did i do some mistakes?
Thanks!!!