Hi,
i have my telerik app into an iframe.
I have the problem with tooltip. It isn't showing correctly, not hide/show correctly.
The image show the problem.
What should i do?
Thanks.
Hello
<telerik:RadClientExportManager ID="RadClientExportManager1" runat="server">
<PdfSettings PageBreakSelector=".PageBreak" />
</telerik:RadClientExportManager>
On adding of PdfSettings the class which helps to change the exported content does not get applied to the content.
Please help.
Hi,
I have a problem to handle z-index on ImageManager and ImageEditor popup windows. In our application, we override z-index in .RadWindow_Bootstrap class ( .RadWindow_Bootstrap { z-index: 100000 !important; } ) to make sure ImageManager popup window display on top of other controls. The issue happens if we try to open ImageEditor window, the two windows shares the same css class, so the ImageEditor window is underneath of ImageManager window.
Is there any way we can solve it?
Thanks in advance,
lan
Hello,
I am having problem to display video in RadMediaPlayer
Server Environment:
Windows Server 2008 R2
IIS 7.5
Video file format mp4
Client Environment:
Windows 10
IE Version 11.540.15063.0
Windows 7
IE Version 11.0.9600.18163
Problem:
There was not MIME type "video/mp4" in the IIS - I have added that one
After that the video displays in the Chrome, FF, and IE 11 on Windows 10, but does not in IE 11 on Windows 7
When I changed source from local file (/video/testvideo.mp4) to Telerik demo site example
http://demos.telerik.com/aspnet-ajax/media-player/examples/functionality/mediatypes/video/justCode.mp4
The video displays correct in the all browsers on Windows 10 and Windows 7.
Thank you
We have an ASP.Net application that is contains a tab control with several tabs. At one time, when you would do Print from the browser, it would print all the tabs at once. That no longer works now. Neither of the code snippets help...
@media print
{
.k-tabstrip .k-content
{
display: block;
}
}
...or...
<style type="text/css" media="print">
.rmpHiddenView {
display: block !important;
}
#NavigationTab, #btnNew, #btnSave, #QRDiv, .hidePrint, #cboChecklists, #cboJobsWithChecklists {
display: none;
}
</style>
Here is the code we're using to get the tabs set up...
<telerik:RadTabStrip ID="NavigationTab" runat="server" SelectedIndex="0" MultiPageID="NavigationTabPages">
<Tabs>
<telerik:RadTab runat="server" Text="Shop" Owner="NavigationTab" PageViewID="ShopPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Testing" Owner="NavigationTab" PageViewID="TestingPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Testing Coordinator" Owner="NavigationTab" PageViewID="TestingCoordinatorPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Punch List" Owner="NavigationTab"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Shipping" Owner="NavigationTab" PageViewID="ShippingPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Notes" Owner="NavigationTab" PageViewID="NotesPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="QR Code" Owner="NavigationTab" PageViewID="QRPageView" Visible="False"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="NavigationTabPages" runat="server" SelectedIndex="0">
<telerik:RadPageView ID="ShopPageView" runat="server" >
Any thoughts about what might be causing this?
Hi Team,
I have added RadConfirm() in the ASCX code behind on radbutton click page. But it's failing in runtime throwing the runtime script error "JavaScript runtime error: Unable to get property 'radconfirm' of undefined or null reference".
window.radconfirm=function(h,a,g,d,b,f,c){var e=GetRadWindowManager();
return e.radconfirm(h,a,g,d,b,f,c);
};
here 'e' is undefined.
My ascx code behind
else if (projectDropdown == ApplicationConstants.WF_CURRENCY_CONVERSION_CUBE_DISPLAY)
{
string Tag = string.Empty;
string confirmMsg = string.Empty;
List<string> factTag = presenter.GetFactTagAssociated(projectId, DsId);
if (factTag.Count > 0)
{
confirmMsg += "The listed facts will be impacted. <br/>";
foreach (string tag in factTag)
{
Tag += tag + ",";
}
confirmMsg += Tag;
confirmMsg += " <br/> Do you want to continue?";
}
RadAjaxManager.GetCurrent(Page).ResponseScripts.Add("radconfirm('" + confirmMsg + "', callbackFunctionPerformStartProcessValidation , 300 ,100 , null ,'" + ApplicationConstants.CLOSE + "' )");
return;
}
ascx Script block
function callbackFunctionPerformStartProcessValidation(arg) {
if (arg) {
debugger;
var argument = "Start Process";
$find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").ajaxRequest(argument);
}
}
I have added telerik:RadWindowManager above the radscript block and below the script block too. but it's not working.
Please let me know how to progress. It's blocking me.
Thanks,
Rosalini
Is anyone else getting this problem with a basic AsyncUpload upload, we have started to get this exception a lot since a windows update was installed:
https://support.microsoft.com/en-gb/help/4032115/july-2017-preview-of-the-quality-rollups-for-the-net-framework-3-5-4-5
It does not seem to be telerik version specific as this is affecting websites using the old DLL too.
The call stack is as follows:
==
System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.IO.IOException: The process cannot access the file because it is being used by another process. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.File.InternalMove(String sourceFileName, String destFileName, Boolean checkHost) at popup_AddBulkFiles.RadButtonSaveFile_Click(Object sender, EventArgs e) at Telerik.Web.UI.RadButton.OnClick(ButtonClickEventArgs e) at Telerik.Web.UI.RadButton.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
==
Also more seriously it seems to be corrupting files uploaded too e.g. a chunk of a file which was at the beginning is being duplicated in the middle.
I would report this as a bug but I have not been able to replicate it from my end.
Thanks
Normally the following approach works for me:
window.onload = function () {
var map = $find("<%=RadMap1.ClientID%>").get_kendoWidget();
map.layers[3].hide();
}
However, in particular case this approach hides layers, but on map.layers[3].show() it does not show layer.
I also tried to play with opacity: map.layers[3].options.opacity = 0.9, but no luck
Any thoughts?