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>
If the Org Chart has 1 root item, drag and drop works fine (See TelerikOrgChartDragWorking.png).
But, if there are 2 root items, then drag and drop does not work (See OrgChartDragNotWorking.png), it won't even let me start dragging.
Any way to fix this?
