Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
129 views

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.

Marco
Top achievements
Rank 1
 answered on 23 Aug 2017
0 answers
139 views

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.

Ashwin
Top achievements
Rank 1
 asked on 23 Aug 2017
4 answers
241 views
Hi,

At the moment it doesn't appear possible to drag an Outlook email (.msg file) from Outlook on to the drag and drop box for uploading. It's possible to do it by dragging the email to the desktop to create the .msg file and then drag it to the RadAsyncUpload box but I want to just be able to drag an email directly from Outlook to the upload box.

When will it be possible to achieve the above or what is needed to implement it?

Thanks

Tim
Vishal
Top achievements
Rank 1
 answered on 23 Aug 2017
0 answers
68 views

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

lan luo
Top achievements
Rank 1
Iron
 asked on 22 Aug 2017
0 answers
167 views

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

Andy
Top achievements
Rank 1
 asked on 22 Aug 2017
6 answers
288 views

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?

 

 

Joseph
Top achievements
Rank 1
 answered on 22 Aug 2017
8 answers
216 views
Hi,

               Iam Using RadCalendar Control. Iam displaying Year view Calendar in 4 Columns and 3 Rows by setting MultiViewColumn property and MultiViewRow property. Now Iam able to access only main Header i.e, Year Header not Month Headers. My Requirement is when i click on Particular month i should display only that month other months shouldn't appear. But Iam not able to click on Months in my RadCalendar(Year View). I need help on this Issue..


Thanks & Regards,
Pavani
Daniel
Top achievements
Rank 1
 answered on 22 Aug 2017
1 answer
348 views

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

Marin Bratanov
Telerik team
 answered on 22 Aug 2017
3 answers
704 views

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

Marin Bratanov
Telerik team
 answered on 22 Aug 2017
6 answers
213 views

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?

David
Top achievements
Rank 1
Iron
Iron
Veteran
 answered on 21 Aug 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?