Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
139 views

Hi,

When I'm adding both scatterLineSeries and ScatterSeries in the same graph, scatterseries are always behind the scatterLineSeries? How I get ScatterSeries over the Scatterlineseries?

 

Regards,

Auvo

 

 

Stamo Gochev
Telerik team
 answered on 27 Sep 2016
3 answers
78 views
In a vb.net 2010 web form application, I have the telerik radeditor installed as part of the application. The version of the rad editor that is used Telerik_UI_for_ASP.NET_AJAX_2016_1_225_Dev.msi. The problem is when the vb.net web form application is being accessed by the user, the radeditor does get hidden after a few seconds. The user can see that the radeditor is being displayed and goes away.
Thus I am trying to determine what I can do to solve the problem. Is there a value in the web.config file that I can change to decrease the amount of time the radeditor is being displayed? Basically do you know what I can do to solve the problem? If so, would you tell me what I can do to solve the issue?
diane
Top achievements
Rank 1
 answered on 26 Sep 2016
12 answers
263 views
Hi,

I'am using PageLayout and Device Detection framework, version 2014.3.1024 (just released!).

The problem is: PageLayout responds incorrectly with device screen size and viewport of browsers.

For example:

- Set HiddenLg="True" for LayoutColumn, but this column is hidden with browser viewport 1025-1280 (which is actually Medium).
- Set HiddenXl="True" for LayoutColumn, but this column is hidden with browser viewport 1281 and higher (1281-1366 is actually Large, and 1367 and higher is Extra large).

This occurs with all other options and also device screen (I have tested on some mobile phones)... It seems PageLayout is always one step higher than  DeviceScreenSize enum of Detection framework. Looking inside your DeviceScreenSize enum (as pasted below), I think the problem is obviously there (perhaps?): This enum version is without ExtraSmall while PageLayout does have ExtraSmall option (Xs). So wrong mapping of value between PageLayout and DeviceScreenSize enum might cause one step different among the two.

The enum should be:

ExtraSmall = 0,
Small = 1,
Medium = 2,
Large = 3,
ExtraLarge = 4,

Please check if this is the problem.

By the way, I would suggest the following feature:

HiddenUp, HiddenDown (or whatever the name is)

In many cases (if not to say most cases), you want to set hidden to an element from a point upward or downward.
Let's say:

- Case HiddenDown:
You want to set hidden for a div with Medium, Small and ExtraSmall (display on Large and ExtraLarge), now you have to set these:
HiddenMd="True" HiddenSm="True" HiddenXs="True"

With HiddenDown="Md" would cover them all.

- Case HiddenUp:
You want to set hidden for a div with Medium, Large and ExtraLarge (display with ExtraSmall, Small), now you have to set these:
HiddenXl="True" HiddenLg="True" HiddenMd="True"

With HiddenUp="Md" would cover them all.

Actually, I have developed these features myself as additional functions of your PageLayout and they are working well, saving time and with less code.

Hope that this will come with the next version.

Thank you.
(And sorry for my bad English :()



============= DeviceScreenSize enum of Detection framework =============================================
    // Summary:
    //     The device screen size based on the its dimensions in CSS pixels
    //
    // Remarks:
    //     The default ranges are: Small (to 600) CSS pixels Medium (601-1024) CSS pixels
    //     Large (1025 - 1366) CSS pixels ExtraLarge (over 1366) CSS pixels
    public enum DeviceScreenSize
        {
        Small = 0,
        Medium = 1,
        Large = 2,
        ExtraLarge = 3,
        }
Ivan Danchev
Telerik team
 answered on 26 Sep 2016
3 answers
160 views

I have a dynamically built page with many different controls loaded onto the page.

Tthis page could have multiple rad editor on it.

 

The problem is that the page has the focus set on to the last rad editor loading on to that page.

Which events sets the focus to the content area?

the rad editor is drawn as divs

Rumen
Telerik team
 answered on 26 Sep 2016
4 answers
91 views
Hello,

I have this scenario,

I have a page with multiple text boxes and Rad Editor is at the end of the page, If I set the EditModes property of the RadEditor to HTML then when the Page is Loaded the Rad Editor steals the Page Focus and scrolls to the end of the page, I noticed that this does Not happen in Design and Preview Modes only when I select HTML Mode, why is that? Is this a Bug? If so, is there a quick workaround to this?
Thank you.

TextBox1
TextBox2
TextBox3
.
.
.
RadEditor



---
This was tested in Firefox, Crhome and IE and they all have the same problem.
Rumen
Telerik team
 answered on 26 Sep 2016
2 answers
126 views

Hi, every one

i use tool RadCaptcha in my Project but

RadCaptcha Audio in Chrome ,FireFox is working. ----- Have sound

and RadCaptcha Audio in IE11 ,Safari is not working ------ no sound

 

How do I solve this problem?

 

Please Help.

Thank you.

Rumen
Telerik team
 answered on 26 Sep 2016
6 answers
168 views

Hi,

We are having a problem with Paste from Word & Paste from Word, Strip Font Issue. The pasted text is broken and totally different compare to the text copied from the word document. Please find the attached for the sample text in word and the result in Chrome/FireFox. It works fine with IE edge but it does not in Chrome/FireFox.

Also when we try to bullet the last paragraph it does not work as expected, it bullets as expected but it works fine with "Paste" (Ctrl V)

Here's the link of the sample page - https://www.knowledgelink.training/Edit

Hope to hear from you soon.

Regards

Dev

Rumen
Telerik team
 answered on 26 Sep 2016
1 answer
146 views

Hello to all,
since I use ASP.NET AJAX UI v 2016.2.607 I found that web controls are larger and with more padding. I thought it was due to the new Skins Bootstrap but the controls remain large even with the old skin Metro or Default. Depends on what?

This becomes a problem when I have to update a Visual Studio 2015 Project to the new version of Telerik controls 2016.2.607. The layout is compromised by the new size of the controls.

I attach a JPG that demonstrates the problem

Thanks so much

Marin Bratanov
Telerik team
 answered on 26 Sep 2016
3 answers
89 views
We have a content editor that uses the RadEditor for edit and display of HTML. Recent versions of the ASP.NET AJAX have caused this display problem for content blocks that contain a tag like <title /> instead of the correct <title></title>. Edge and Chrome do not like the <title /> and suppress the remainder of the page.

 

The sample test case content is simply

   <html>
   <head>
   <title />
   </head>
  </html>

 

 Older versions of the RadEditor modify the title to prevent the issue:

   <textarea id="ctl00_AdminContent_ContentEditor1_RadEditor1ContentHiddenTextarea" name="ctl00$AdminContent$ContentEditor1$RadEditor1" rows="4" cols="20" style="display:none;">

   %3chtml%3e
   %3chead%3e
   %3ctitle /%3e
   %3c/head%3e
   %3c/html%3e

   </textarea>

The current RadEditor versions emit a div instead of a textarea:

   <div id="ctl00_AdminContent_ContentEditor1_RadEditor1" class="RadEditor Web20 reWrapper" style="height:400px;width:680px;">
   <html>
   <head>
   <title />
   </head>
   </html>
   </div>

The working version is 2015.3.930 and failing versions are 2016.2.607 and 2016.3.914.

Regarding the <title /> issue, please see http://stackoverflow.com/a/196249

Thanks,

Gary Davis

 

Rumen
Telerik team
 answered on 26 Sep 2016
1 answer
163 views

<telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableViewState="false">
       <Windows>
           <telerik:RadWindow runat="server" ID="rdWindowMessage" InitialBehaviors="Resize" Width="700px" Height="400px" Behaviors="None" EnableShadow="true" Modal="true"
               DestroyOnClose="true">
               <ContentTemplate>
                   <asp:Panel ID="pnlEventMessage" runat="server">
                       <br />
                       <div class="container">
                           <div class="row">
                               <div class="col-md-12 text-center">
 
                                   <asp:Image runat="server" ID="imgMessageInfo" Visible="true" ImageUrl="/_layouts/images/mewa_infob.gif" />
                                   <asp:Image runat="server" ID="imgMessageCritical" Visible="false" ImageUrl="/_layouts/images/CRIT_32.GIF" />
                               </div>
                           </div>
                           <div class="row">
                               <div class="col-md-12 text-center">
                                   <asp:Label runat="server" ID="lblMessage" />
                               </div>
                           </div>
                           <div class="row">
                               <div class="col-md-12 text-center">
                                   <telerik:RadButton ID="rdBtnMessageOk" runat="server" Text="Ok" OnClick="rdBtnMessageOk_Click"/>
                               </div>
                           </div>
                       </div>
                   </asp:Panel>
               </ContentTemplate>
           </telerik:RadWindow>
       </Windows>
   </telerik:RadWindowManager>

Hi, 

I have implement a RadWindow to display the outcome of a process and there is a "ok" button in RadWindow to close it. 

When i click on the browser back button, the previous RadWindow  message will show out.

I like to know is there anyway to stop the RadWindow showing when users click on the browser 'back' button? 

How should i handle it?

Thank,

 

Marin Bratanov
Telerik team
 answered on 26 Sep 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?