
I have a page with user control A and user control B.
In user control A, I have a RadAsyncFileUpload. while I click on a button (say Next) The page loads user control B. I have a breadcrumb set on top of the page. So what I want is when I hit the breadcrumb to load the previous state (i.e. load user control A again) I want the RadAsyncFileUpload to retain the file information and value.
How can I achieve that? I' pretty new to telerik.
I tried the following from the back end (so that only hitting the cancel will triger postback, all other click will retain the information for the upload control)
Telerik.Web.UI.RadButton btncancel = (Telerik.Web.UI.RadButton)this.Parent.Parent.FindControl("btn_Cancel_ID");
RadAsyncFileUpload.PostbackTriggers = new string[] { btncancel.ID };
I also have "AllowedFileExtensions" on the file upload control. with the postback trigger being enables as above, when I try to navigate clicking the next button, it's not finding any file uploaded in the first place and I'm getting "RadAsyncFileUpload.UploadedFiles.Count" to be zero.
Hi,
I am trying to play a video using an URL.
But i am not able to play it.
Can you suggest me the best approach for this?
<telerik:RadMediaPlayer ID="RadMediaPlayer1" runat="server" Height="360px" Width="640px"
Source="http://localhost/XTPSaaS/Albums/a344f305-f9e3-4ff6-b2ec-8ce4fa60c432/o_Screwdriver.avi">
</telerik:RadMediaPlayer>
Regards,
Varun R

I have Radwindow which Pops up by clicking ImageButton on RadGrid and Radwindow is not working whenever i set its Property Visible = true. Though its working by setting visibleonpageload=true. but it pops up every time page is loaded.
<telerik:RadWindow ID="radtooltipshowbom" AutoSize="true" KeepInScreenBounds="true" AutoSizeBehaviors="Default" ContentScrolling="Y" RenderInPageRoot="false" runat="server" Modal="true" HideEvent="ManualClose" Style="z-index: 6990" Position="TopCenter" BackColor="White" Width="1510px" Height="670px">I am using ragrid.The td value should come.
It is working fine in chrome.But in mozila and IE data is not comming.
Please check the code
In mozila:
<td class="rgExpandCol">
<input id="ctl00_ContentMainBody_RadGrid_Publication_ctl00_ctl04_GECBtnExpandColumn" class="rgExpand" type="button" title="Expand" onclick="javascript:__doPostBack('ctl00$ContentMainBody$RadGrid_Publication$ctl00$ctl04$GECBtnExpandColumn','')" value=" " name="ctl00$ContentMainBody$RadGrid_Publication$ctl00$ctl04$GECBtnExpandColumn">
</td>
<td> </td>
In chrome
<td class="rgExpandCol"><input type="button" name="ctl00$ContentMainBody$RadGrid_Publication$ctl00$ctl04$GECBtnExpandColumn" value=" " onclick="javascript:__doPostBack('ctl00$ContentMainBody$RadGrid_Publication$ctl00$ctl04$GECBtnExpandColumn','')" id="ctl00_ContentMainBody_RadGrid_Publication_ctl00_ctl04_GECBtnExpandColumn" title="Expand" class="rgExpand"></td>
<td>Abu Dhabi Statistics</td>
Please help

<telerik:RadAjaxManagerProxy ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="CampaignsRadGrid"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="CampaignsRadGrid" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManagerProxy> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Vista"></telerik:RadAjaxLoadingPanel><telerik:RadGrid ID="CampaignsRadGrid" Width="97%" Skin="Office2007"AllowPaging="True" PageSize="10" runat="server" AllowSorting="true"AutoGenerateColumns="false" GridLines="None" onneeddatasource="CampaignsRadGrid_NeedDataSource" ondetailtabledatabind="CampaignsRadGrid_DetailTableDataBind" onitemcommand="CampaignsRadGrid_ItemCommand" > <PagerStyle Mode="NextPrevNumericAndAdvanced" AlwaysVisible="true" /> <MasterTableView Width="100%" EditMode="PopUp" DataKeyNames="ID" AllowMultiColumnSorting="True" > <DetailTables> <telerik:GridTableView DataKeyNames="ID" Name="Campaigns" Width="100%" NoDetailRecordsText="There are no campaigns for this country."> <DetailTables> <telerik:GridTableView CommandItemDisplay="Top" DataKeyNames="ID" AutoGenerateColumns="true" Name="Entries" NoDetailRecordsText="There are no entries for this campaign." Width="100%"> <CommandItemSettings ShowExportToExcelButton="true" ShowRefreshButton="false" ShowAddNewRecordButton="false" /> </telerik:GridTableView> </DetailTables> <Columns> <telerik:GridBoundColumn UniqueName="CampaignName" DataField="CampaignName" SortExpression="CampaignName" HeaderText="Campaign Name" AllowSorting="true" /> <telerik:GridDateTimeColumn UniqueName="DateCreated" SortExpression="DateCreated" DataField="DateCreated" HeaderText="Date Created" DataFormatString="{0:d}" AllowSorting="true" /> <telerik:GridBoundColumn UniqueName="Entries" SortExpression="Entries" DataField="Entries" HeaderText="Entries" AllowSorting="true" /> </Columns> </telerik:GridTableView> </DetailTables> <Columns> <telerik:GridBoundColumn UniqueName="CountryName" SortExpression="CountryName" DataField="CountryName" HeaderText="CountryName" AllowSorting="true" /> </Columns> </MasterTableView> <ClientSettings EnableRowHoverStyle="true" /> <PagerStyle Mode="NextPrevAndNumeric" /></telerik:RadGrid>protected void CampaignsRadGrid_ItemCommand(object source, GridCommandEventArgs e){ if (e.CommandName == Telerik.Web.UI.RadGrid.ExportToExcelCommandName) { ConfigureExport(); CampaignsRadGrid.MasterTableView.ExportToExcel(); }}public void ConfigureExport(){ CampaignsRadGrid.ExportSettings.ExportOnlyData = true; CampaignsRadGrid.ExportSettings.IgnorePaging = true; CampaignsRadGrid.ExportSettings.OpenInNewWindow = false;}I have a RadMultiPage with multiple RadPageView, some of which are created dynamically. The page starts with one RadPageView and the user can add more via a button. The initial code is something like the one bellow.
<telerik:RadMultiPage ID="ContactsPagesViews" ScrollBars="Auto" Height="100%" RenderMode="Lightweight" runat="server" OnPageViewCreated="ContactsPagesViews_PageViewCreated" SelectedIndex="0"> <telerik:RadPageView ID="RadPageView1" runat="server" Height="600px"> more elements here </telerik:RadPageView></telerik:RadMultiPage>I also have some code to resize my RadPageViews to fit the size of my window. For this I use the following code:
01.<telerik:RadScriptBlock runat="server" ID="RadScriptBlock1">02. <script type="text/javascript">03. $(document).ready(function () {04. 05. $(window).resize(function () {06. ResizePage($find('<%= ContactsPagesViews.ClientID %>'))07. });08. 09. ResizePage($find('<%= ContactsPagesViews.ClientID %>'))10. });11. 12. function ResizePage(multiPage) {13. for (i = 0; i < multiPage.get_pageViews().get_count() ; i++) {14. var pageView = multiPage.get_pageViews().getPageView(i);15. pageView.get_element().style.height = ($(window).height() - 80) + 'px';16. }17.}18. </script>19.</telerik:RadScriptBlock>The Resizing is working really great but the first time the page is loaded the initial RadPageView is not resized. You can see line 9. where I'm trying to force it but it only resizes if I change the size of the window. Is there anyway for this to work?
Thank you.

I need the ability for the user to select a portion of the text displayed in a dialog box. In the demo of Dialog boxes located here http://demos.telerik.com/aspnet-ajax/window/examples/browserdialogboxes/defaultcs.aspx when clicking on the button "radalert from server" the ability to select the text by holding down the left mouse button and dragging the cursor does work.
However, when I created a simple button which displays a RadAlert dialog it will not allow selecting of the text by clicking and dragging the cursor. It will however allow selecting the text by double clicking on a word in the text. Attached is a screen shot of what the dialog looks like when attempting to click and drag the cursor. When I copy and paste I get the following:
OK status label {1} ##LOC[OK]## {1} ##LOC[OK]## ##LOC[Cancel]## {1} ##LOC[OK]## ##LOC[Cancel]##
We are using version UI for ASP.NET AJAX Q2 2014.