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
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.

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,
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

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
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

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><html xmlns="http://www.w3.org/1999/xhtml"><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>