Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
252 views

Firefox 63 introduces a change that affects the checkbox and radio buttons styled by RadFormDecorator in Classic rendering. We are working on resolving the problem, meanwhile you can workaround it in one of the ways provided in the bug's public item:

https://feedback.telerik.com/Project/108/Feedback/Details/258566

Telerik Admin
Top achievements
Rank 1
Iron
 asked on 29 Oct 2018
3 answers
83 views

I have a RadDiagram that changes colours of its nodes based on selections and settings in a RadGrid.

The RadGrid "updates" the diagram by writing a JSON to a textbox that the diagram reads. 

My question is how to get the RadDiagram to refresh to reflect the updated colours without refreshing the entire page.

Vessy
Telerik team
 answered on 29 Oct 2018
3 answers
93 views

I am using Visual Studio 2017, and I'd like to change the color of the point track as shown here: https://docs.telerik.com/devtools/aspnet-ajax/controls/gauge/structure.

What I've tried:

1. <telerik:RadLinearGauge ID="gauge" runat="server" Height="280" Pointer-Track-Color="#5ca038" Pointer-Track-Opacity="0.5" Pointer-Track-Size="30" Pointer-Track-Visible="true">

 2. <Pointer Shape="BarIndicator" Value="15" Size="30" Color="#5ca038">
           <Track Opacity="0.2" Size="30" Color="Black" />
     </Pointer>

3. <Pointer Track-Visible="true" Track-Color="Green" Track-Size="30" Track-Opacity="0.6"></Pointer>

 

However, none of the above had any effect on the point track. Could you suggest? Thank you.

 

Gary,

Marin Bratanov
Telerik team
 answered on 29 Oct 2018
5 answers
145 views

This issue just started to happen yesterday.  It should be very easy to reproduce.  It only happens in firefox v63, which was just updated on my PC yesterday.  

 

Please click to view video demonstration that displays the issue (YouTube).    I've posted this sample page online so it can be viewed here: https://demoqa.eadoptonline.com/checkboxtest.aspx

 

If you use firefox < v63 it will display normally, if you have firefox v63 (current latest release as of this posting) each checkbox is duplicated.  

Relevant code to reproduce the issue:

<asp:Repeater runat="server" ID="Repeater1">
      <HeaderTemplate>
          <table>
      </HeaderTemplate>
      <ItemTemplate>
          <tr>
              <td id="row" runat="server" class="bodycopy">
                  <asp:Checkbox ID="chkApproved" runat="server" /> how many times does the checkbox appear on each row?
              </td>
          </tr>
      </ItemTemplate>
      <FooterTemplate>
          </table>
      </FooterTemplate>
  </asp:Repeater>

 

Code behind is unimportant

protected void Page_Load(object sender, EventArgs e)
    {
        List<string> datasource = new List<string>();
        datasource.Add("asdfda");
        datasource.Add("asdfdaadsf");
        datasource.Add("asdfdadsfa");
        datasource.Add("asdfdaadf");
        datasource.Add("asdfdaafad");
 
        Repeater1.DataSource = datasource;
        Repeater1.DataBind();
    }

 

The form decorator in my master page is as follows.  The skin comes from web.config but it doesn't matter what i use the problem appears tied to the render mode, not the skin. 

<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" RenderMode="Classic" />

 

Thanks!

-Mark

 

Vessy
Telerik team
 answered on 29 Oct 2018
1 answer
120 views

Hi,

I wanted to check on this before I start this project. I want to create a blog utilizing the Telerik ASP.NET AJAX components. Is this okay with Telerik terms (wasn't sure if a blog would be considered a content management system)?

The blog is for my own use and not going to be sold.

Thanks,
Jacob

Geri
Telerik team
 answered on 29 Oct 2018
3 answers
90 views

Hi,

 

As a long term Telerik user our company is now in the progress of applying some more industry standards.

Maybe someone can shed some light on following questions:

 

Are there plans to let RadEditor work with multi class from the UI?

Are there plans to make the editor more Bootstrap compatible?

 

Thanks, Marc

 

Rumen
Telerik team
 answered on 29 Oct 2018
1 answer
6.5K+ views
As part of our company’s security test they have asked us to find out the following:

Issue:
Our client exposed site is requesting Webresource.axd file with paramaters d and t as part of the web request but when the value of t parameter is modified as part of a penetration test it seems to comeback with an OK(200) responds instead of a custom error from our site.

Question:
Are you guys processing the t paramater as part of the GET request to Webrescource.axd? If you are, what do you expect to have in that t parameter as part of your processing (ex t is a timestamp or t is a number)?
Marin Bratanov
Telerik team
 answered on 27 Oct 2018
19 answers
2.6K+ views
Can you suggest how can we find only the changed rows in a batch Editing Grid and read them one by one provided the Save Button is placed outside the grid.
essai
Top achievements
Rank 1
 answered on 26 Oct 2018
17 answers
1.5K+ views
Hi,
 I am using RadAsyncUpload control for select a image file from physical path like "D:/Mypicture/pic1.jpeg" and I want to get the full physical path means ‘D:/Mypicture/pic1.jpeg’ but I haven’t get the full path using RadAsyncUpload control.
Below is my code :-
.aspx
<telerik:RadAsyncUpload runat="server" ID=" RadAsyncUpload " ReadOnlyFileInputs="false" Width="225px" MaxFileInputsCount="1" OverwriteExistingFiles="true"> </telerik:RadAsyncUpload>

.cs
foreach (UploadedFile file in RadAsyncUpload.UploadedFiles)
{
String fullpath = file.FileName;
}
Using this code I got only image name i.e. ‘pic1.jpeg’

Please help!

Regards
Ravi
jayavel
Top achievements
Rank 1
 answered on 26 Oct 2018
5 answers
595 views

I have a very simple ASPX page and followed the installation procedures for Telerik UI for ASP.NET AJAX, all seems good and no errors when entering the source ... but as soon as I hit "Design" tab in VS 2015 IDE to view I get the following error for any Telerik control reference:

 

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Login.aspx.vb" Inherits="DC.Web.Login" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title>Login</title>
</head>
<body>
    <form id="Login" runat="server">
         
        <!-- RadScriptManager is required for all AJAX based controls -->
        <telerik:RadScriptManager ID="rsmLogin" runat="server"></telerik:RadScriptManager>
        <telerik:RadSkinManager ID="rskmLogin" runat="server"></telerik:RadSkinManager>
        <telerik:RadInputManager ID="rimLogin" runat="server"></telerik:RadInputManager>
        <telerik:RadFormDecorator ID="rfdLogin" runat="server" />
 
        <div>
 
            <telerik:RadLightBox ID="RadLightBox1" runat="server"></telerik:RadLightBox>
     
        </div>
 
    </form>
</body>
</html>
Rumen
Telerik team
 answered on 26 Oct 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?