or
Hi,
This is my scenario
When user Click the button
A javaScript Function is Called which is making a ajaxRequest.
This AjaxRequest from Code behind Registers a script (I m using RAdAjaxManger.ResponseScripts.Add(“radalert(‘HELP!!!’)”))
Along with this I have Added a setting in RAdAjaxManger
So that it shows a loadingPanel during this ajax request…
Problem is radAlert(which is Called From CodeBehind using ResponseScripts) doesn’t fire !!
If I remove the Ajax Settings(for RAdAjaxManager Itself) then it fires!!..please help
I need to show a loading panel when the Ajax Request Happens!!..
| <telerik:GridTemplateColumn UniqueName="webLinkedContent" HeaderText="Web linked" > |
| <ItemTemplate> |
| <asp:CheckBox ID="webLinkedContent" Enabled="false" runat="server" /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| protected void sourcesGrid_itemDataBound(object sender, GridItemEventArgs e) |
| { |
| if ((e.Item is GridDataItem)) |
| { |
| GridDataItem dataItem = (GridDataItem)e.Item; |
| string psSourceCd = ((System.Data.DataRowView)(((Telerik.Web.UI.GridItem)(dataItem)).DataItem)).Row.ItemArray[9].ToString(); |
| if (psSourceCd.Length > 4) |
| { |
| string beginning = psSourceCd.Substring(0, 4); |
| if (beginning == "SPD_") |
| { |
| CheckBox chkbx = dataItem["webLinkedContent"].FindControl("webLinkedContent") as CheckBox; |
| chkbx.Checked = true; |
| } |
| } |
| } |
| } |
| for (int i = 0; i < gridChannels.PageCount * gridChannels.PageSize; i++) |
| { |
| gridChannels.EditIndexes.Add(i); |
| } |
| foreach (GridEditableItem editedItem in gridChannels.EditItems) |
| { |
| // get data.. |
| } |
| Protected Sub ReptSummaryGrid_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles ReptSummaryGrid.NeedDataSource |
| If e.IsFromDetailTable Then |
| LoadReportsSummary(8) |
| End If |
| End Sub |
