Hi Team,
I have one not clearly problem using RagGrid ajax in my solution. I have one server side formed ragGrid that is working perferct outside my cms but inside is resfreshing only two times and no more resfreshing is made. In the fact the commands are working but when i push over my radgrid selecting checkboxes or commands buttons one "Post" is generated everytime that i can see in firebug console and have a content but page is no more updated, EnableRowHoverStyle is no working anymore. Firebug and IEdev is not sending any errors for this page. I need some tips who to search this error or problem.Thanks, Romi
I have one not clearly problem using RagGrid ajax in my solution. I have one server side formed ragGrid that is working perferct outside my cms but inside is resfreshing only two times and no more resfreshing is made. In the fact the commands are working but when i push over my radgrid selecting checkboxes or commands buttons one "Post" is generated everytime that i can see in firebug console and have a content but page is no more updated, EnableRowHoverStyle is no working anymore. Firebug and IEdev is not sending any errors for this page. I need some tips who to search this error or problem.Thanks, Romi
| <telerik:RadAjaxManager ID="RadAjaxManager1" EnableAJAX="true" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="PlanGrid"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="PlanGrid" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadGrid ID="PlanGrid" EnableAJAX="True" EnableAJAXLoadingTemplate="True" runat="server" Skin="WebBlue" GridLines="None" Width="100%" OnNeedDataSource="PlanGrid_NeedDataSource" |
| OnItemCreated="PlanGrid_ItemCreated" OnUpdateCommand="PlanGrid_UpdateCommand" AutoGenerateColumns="False" AllowMultiRowEdit="True" ShowStatusBar="true" AllowPaging="True"> |
| <MasterTableView DataKeyNames="Week" Width="100%" CommandItemDisplay="Top" EditMode="InPlace" PageSize="14"> |
| <Columns> |
| <telerik:GridTemplateColumn UniqueName="CheckBoxTemplateColumn"> |
| <HeaderTemplate> |
| <asp:CheckBox id="headerChkbox" OnCheckedChanged="ToggleSelectedState" AutoPostBack="True" runat="server"></asp:CheckBox> |
| </HeaderTemplate> |
| <ItemTemplate> |
| <asp:CheckBox id="CheckBox1" OnCheckedChanged="ToggleRowSelection" AutoPostBack="True" runat="server"></asp:CheckBox> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridBoundColumn UniqueName="Week" SortExpression="Week" HeaderText="Week" |
| DataField="Week" /> |
| <telerik:GridBoundColumn UniqueName="Price1" HeaderText="Precio1" |
| DataField="PriceClp"/> |
| <telerik:GridBoundColumn UniqueName="Price2" HeaderText="Precio2" |
| DataField="PriceUs" /> |
| <telerik:GridBoundColumn UniqueName="Status" HeaderText="Situación" |
| DataField="Status" /> |
| <telerik:GridEditCommandColumn UpdateText="Update" UniqueName="EditCommandColumn" |
| CancelText="Cancel" EditText="Edit"> |
| <HeaderStyle Width="85px"></HeaderStyle> |
| </telerik:GridEditCommandColumn> |
| </Columns> |
| <CommandItemTemplate> |
| <asp:Label runat="server" ID="Label3">Cambia precio/situación sobre selectos o bien editar cada lÃnea</asp:Label> |
| <br /> |
| <asp:Label runat="server" ID="lbPrice" Width="60">Precios</asp:Label> |
| <br /> |
| <asp:Label runat="server" ID="Label1" Width="60">Situación</asp:Label> |
| <asp:DropDownList ID="ddlStatus" runat="server" Width="100" > |
| <asp:ListItem Selected="True" Text="Situación" Value="-1"></asp:ListItem> |
| </asp:DropDownList> |
| <asp:Button runat="server" ID="BtUpdateStatus" Text="Actualizar" CommandName="UpdateSit" Width="60" /> |
| </CommandItemTemplate> |
| <EditFormSettings CaptionFormatString="Semana {0}" CaptionDataField="Week" > |
| <FormTableItemStyle Width="100%" Height="29px"></FormTableItemStyle> |
| <FormTableStyle GridLines="None" CellSpacing="0" CellPadding="2"></FormTableStyle> |
| <FormStyle Width="100%" BackColor="#eef2ea"></FormStyle> |
| <EditColumn ButtonType="ImageButton" /> |
| </EditFormSettings> |
| </MasterTableView> |
| <ClientSettings EnableRowHoverStyle="true"> |
| <ClientEvents OnRowDblClick="RowDblClick" /> |
| <Selecting AllowRowSelect="True" /> |
| </ClientSettings> |
| <PagerStyle Mode="NumericPages"></PagerStyle> |
| </telerik:RadGrid> |