Hi,
I am using the version released on 2008 May.
I have 2 controls one is Telerik Calendar the other one is Telerik Grid.
I set them into 2 ajax panel however the Calendar works fine, the telerick grid will fully post back when user click filter options. I change the Grid's ajax panle to Ajax manager, the first click is ok, second click will cause full postback, and the third time work well again ... ...
It is so wired, any ideas
thank you
I am using the version released on 2008 May.
I have 2 controls one is Telerik Calendar the other one is Telerik Grid.
I set them into 2 ajax panel however the Calendar works fine, the telerick grid will fully post back when user click filter options. I change the Grid's ajax panle to Ajax manager, the first click is ok, second click will cause full postback, and the third time work well again ... ...
It is so wired, any ideas
<table> |
<tr> |
<td> |
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" EnableAJAX="true"> |
<telerik:RadCalendar ID="RadCalendar1" runat="server" Font-Names="Arial, Verdana, Tahoma" |
ForeColor="Black" Style="border-color: #ececec" Skin="Web20" BorderStyle="Double" |
BorderWidth="5px" MultiViewColumns="2" BorderColor="#3366CC" AutoPostBack="True"> |
<CalendarTableStyle BorderColor="White" BorderWidth="2px" Wrap="False" /> |
</telerik:RadCalendar> |
</telerik:RadAjaxPanel> |
</td> |
<td> |
<telerik:RadAjaxManager ID="RadAjaxManager2" EnableAJAX="true" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="gridDrivers"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="gridDrivers" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
<telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="True" AllowSorting="True" |
AutoGenerateColumns="False" GridLines="None" OnNeedDataSource="gridDrivers_NeedDataSource" |
Skin="Web20" Height="500px"> |
<ClientSettings AllowColumnsReorder="True" EnableRowHoverStyle="true" ReorderColumnsOnClient="True"> |
<Selecting AllowRowSelect="True" /> |
<ClientEvents OnRowSelected="RowSelected" /> |
<Scrolling AllowScroll="True" UseStaticHeaders="True" /> |
</ClientSettings> |
<MasterTableView ClientDataKeyNames="DriverID" DataKeyNames="DriverID"> |
<RowIndicatorColumn Visible="False"> |
<HeaderStyle Width="20px" /> |
</RowIndicatorColumn> |
<ExpandCollapseColumn Resizable="False" Visible="False"> |
<HeaderStyle Width="20px" /> |
</ExpandCollapseColumn> |
<Columns> |
<telerik:GridBoundColumn AllowSorting="true" DataField="DriverID" HeaderText="Driver ID" |
SortExpression="DriverID" UniqueName="DriverID" DataType="System.String"> |
</telerik:GridBoundColumn> |
<telerik:GridBoundColumn AllowSorting="true" DataField="DriverName" HeaderText="Driver Name" |
SortExpression="DriverName" UniqueName="DriverName" DataType="System.String"> |
</telerik:GridBoundColumn> |
<telerik:GridBoundColumn AllowSorting="true" DataField="CompanyName" HeaderText="Company Name" |
SortExpression="CompanyName" UniqueName="CompanyName" DataType="System.String"> |
</telerik:GridBoundColumn> |
<telerik:GridBoundColumn AllowSorting="true" DataField="DivisionName" HeaderText="Division Name" |
SortExpression="DivisionName" UniqueName="DivisionName" DataType="System.String"> |
</telerik:GridBoundColumn> |
</Columns> |
<EditFormSettings> |
<PopUpSettings ScrollBars="None" /> |
</EditFormSettings> |
</MasterTableView> |
</telerik:RadGrid> |
</td> |
</tr> |
</table> |
thank you