Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
149 views

Hi Team,

I am developing hybrid app using kendo mobile ui, while dragging/scrolling the page is getting refreshed and clearing all data.

I have implement pull-to-refresh = "false", but still facing the same problem

Its not reproducible in simulator, either user browser stack or android handset.

Here is the links

http://dojo.telerik.com/IMODA/ (with out data-pull-to-refresh)

http://dojo.telerik.com/IMODA/2 (with data-pull-to-refresh= false)

Could you please provide your suggestion. 

Thank you,

Teja Jyothi

 

 

 

Rumen
Telerik team
 answered on 08 May 2019
3 answers
176 views
I can not understand my mistakes, can you help me know if they are delaclariones or imports? I already incorporated the ASP.net code in the design on my Index.aspx page, but when I added the aspx.vb code (visual Basic) I got errors. (attached image)
Rumen
Telerik team
 answered on 07 May 2019
14 answers
286 views
Hello

Have you any plan to add a new feature like a vertical timeline (facebook) ?

Like this : http://codyhouse.co/demo/vertical-timeline/index.html

thanks
Olivier
Rumen
Telerik team
 answered on 07 May 2019
3 answers
260 views

I support a C#.net  2012 web form application. I am thinking of adding the radeditor to the application so users can edit letters like a word document on the web. There will be letters that are to be written in several languages like Spanish, Arabic, French, English and a few other languages. When the application is running a 'generic' template letter will be loaded and the user can edit the letter in the various languages. Almost all the users will only know English and Spanish and they do not know the other languages.

Thus my few questions are about the foreign languages are:

1. Can the radeditor handle the different languages? If so, do I need to change any radeditor settings to handle these different languages? If so, what would I need to change?

2. Can the radeditor format date/time that is applicable for the languages? If so, what would I need to do to format the date/time information?

 

 

Rumen
Telerik team
 answered on 07 May 2019
5 answers
234 views

Hi,

in my webapplication I use a RadMenu that contains some RadMenuItems.

The code is the following:

<asp:Content ID="Content2" ContentPlaceHolderID="FolderContent" runat="Server">
    
     <telerik:RadMenu RenderMode="Lightweight" ID="RadMenu1" Flow="Vertical" CssClass="mainMenu" runat="server" ShowToggleHandle="true">
            <Items>
                <telerik:RadMenuItem Text="Leistungen" NavigateUrl="Views/Office/ServiceListView.aspx" />
                <telerik:RadMenuItem Text="Warengruppen" NavigateUrl="" />
                <telerik:RadMenuItem Text="Artikel" NavigateUrl="Views/Office/ArticleListView.aspx"></telerik:RadMenuItem>

 

When I click on MenuItem "Leistungen" the page ServiceListView.aspx in the folder Views/Office/ should be load in the MainContent and in the browser.

But it doesn't work.

I get the following error message:

System.Web.HttpException: "Vorangestellte .. können nicht zum Beenden auf oberster Verzeichnisebene verwendet werden."

How can I adjust the path without errors?

 

Vessy
Telerik team
 answered on 07 May 2019
3 answers
157 views
Hi,
 
     We tried the examples given in the Telerik site for RadCalendar and implemented Localization for the same successfully. But, it works only for the Culture \ CultureInfo properties (like "en-US", "fr-FR") for both RadScheduler and RadCalendar. But, in our application we are using only "CurrentUICulture", which has the value of only neutral culture (like en, fr etc ...) . When this is assigned to the RadCalendar, we are getting the following error:

Message: Culture 'fr' is a neutral culture. It cannot be used in formatting and parsing and therefore cannot be set as the thread's current culture.
Stack trace:
   at System.Globalization.

CultureInfo.CheckNeutral(CultureInfo culture)
   at System.Globalization.CultureInfo.get_DateTimeFormat()
   at Telerik.Web.UI.Scheduler.Views.Month.RendererBase.CreateNavigationPane(Control container)
   at Telerik.Web.UI.Scheduler.Views.Month.Renderer.GetContent()
   at Telerik.Web.UI.RadScheduler.CreateContent()
   at Telerik.Web.UI.RadScheduler.CreateChildControls(Boolean bindFromDataSource)
   at System.Web.UI.Control.EnsureChildControls()
   at System.Web.UI.Control.FindControl(String id, Int32 pathOffset)
   at Telerik.Web.ChildControlHelper.FindControlRecursive(String ID, Control root)
   at Telerik.Web.ChildControlHelper.FindControlRecursive(String ID, Control root)
   at Telerik.Web.ChildControlHelper.FindControlRecursive(String ID, Control root)
   at Telerik.Web.UI.RadAjaxControl.OnPagePreRender(Object sender, EventArgs e)
   at System.EventHandler.Invoke(Object sender, EventArgs e)
   at System.Web.UI.Control.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


But, as per the information given in the link below, the 'CultureInfo' property should also support the two letter ISO Language names like "en" or "fr" etc ..  
     http://www.telerik.com/help/aspnet-ajax/p_telerik_web_ui_radcalendar_cultureinfo.html

Can you please let us know a solution for this ? How can we assign the 'CurrentUICulture' (TwoLetterISOLanguage Name) value to the 'RadCalendar' control, which has only the 'CultureInfo' property ?

Thanks & Regards,
Karthik.
Vessy
Telerik team
 answered on 07 May 2019
2 answers
110 views
I recently had to reinstall VS2017. When I try to add the controls to the tool box by selecting the DLL i get this error: telerik.web.design.tlb could not be loaded
Rumen
Telerik team
 answered on 07 May 2019
2 answers
117 views

     When trying to add some images using RADEDITOR there is some error that says:

"Cannot deserialize dialog parameters. Please refresh the editor page.
Error Message:Invalid character in a Base-64 string."

so I can only enter text.

 

Vessy
Telerik team
 answered on 07 May 2019
1 answer
477 views

I am trying to show/hide a RadAjaxLoadingPanel explicitly. I am using a RadAjaxPanel (want to try avoiding having to change my page to use a RadAjaxManager instead). I have set the ClientEvents-OnRequestStart="RequestStart" ClientEvents-OnResponseEnd="ResponseEnd" for my RadAjaxPanel. 

<telerik:RadCodeBlock ID="RadCodeBlock" runat="server">
        <script type="text/javascript">
            var currentLoadingPanel = null;
            var currentUpdatedControl = null;
 
            function RequestStart(sender, args) {
                currentLoadingPanel = $find("<%= RadLoadingPanel1.ClientID %>");
 
                if (args.get_eventTarget() == "<%= btnGo.UniqueID %>") {
                    currentUpdatedControl = "<%= RadAjaxPanel1.ClientID %>";
                }
                //show the loading panel over the updated control
                currentLoadingPanel.show(currentUpdatedControl);
            }
 
            function ResponseEnd() {
                //hide the loading panel and clean up the global variables
                if (currentLoadingPanel != null)
                    currentLoadingPanel.hide(currentUpdatedControl);
                currentUpdatedControl = null;
                currentLoadingPanel = null;
            }
        </script>
    </telerik:RadCodeBlock>

 

ResponseStart() and ResponseEnd() are called properly, but the loading panel does not hide when currentLoadingPanel.hide(currentUpdatedControl) is called. The loading panel just stays there forever. This is what my loading panel looks like.

<telerik:RadAjaxLoadingPanel ID="RadLoadingPanel1" runat="server">
</telerik:RadAjaxLoadingPanel>
Rumen
Telerik team
 answered on 07 May 2019
1 answer
107 views

Hello,

I have crated a custom paragraph style. e.g :

  • Definition Term, <dt>

The Problem is when I select/highlight the paragraph wrapped in <dt> tag, the drop down match to "Normal" instead of "Definition Term".

Is this a expected behavior? Is there any way to make the selected item in drop down list to be "Definition Term" while I am selecting the paragraph wrapped in <dt> tag?

 

Thanks and Regards,

Ming Sheng

Rumen
Telerik team
 answered on 07 May 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?