Unplanned
Last Updated: 17 Nov 2021 11:53 by ADMIN

When using the Designer, the Default Values displayed for properties do not reflect the Default values from Lightweight RenderMode.

One particular scenario is when creating a GridButtonColumn for RadGrid that is set to LinkButton. While the Designer shows the ButtonType set to "LinkButton" by default, upon rendering the Grid, the ButtonType is FontIconButton.

There is no way of changing that in the Designer.

Unplanned
Last Updated: 26 Jul 2021 10:44 by ADMIN
Created by: Jason
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
2

Telerik,

Respectfully recommending a guide feature for new users for our Application (Something similar to what this website does https://shepherdjs.dev/) Users can essentially step through controls we have on the page and we have a small verbiage/info for them that is easily digestible. 

Would help tremendously on onboarding new users and documenting new features. 

Unplanned
Last Updated: 19 Jan 2021 16:34 by ADMIN
Created by: UXWorks
Comments: 5
Category: UI for ASP.NET AJAX
Type: Feature Request
8

Please, please, please bring the new RadTaskBoard to ASP.NET AJAX!

I was just reviewing the RadTileList and trying to figure out how to do a Kanban board with your controls, and came across what you just released via the RadTaskBoard, and that would be absolutely perfect to have for ASP.NET AJAX.

Thank you!

Unplanned
Last Updated: 11 Jun 2021 08:30 by ADMIN
Created by: Bhrugesh
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
4

I would like to know if Telerik ASPNET Ajax  control supports securing CSP by adding nonce- or sha256- as mentioned in https://www.sitepoint.com/improving-web-security-with-the-content-security-policy (Refer section - Protecting Inline Styles and Scripts Using a Nonce).
Unplanned
Last Updated: 11 Jun 2021 08:38 by ADMIN
Created by: ShareDocs
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hi,

Is it possible to exercise the NullText option for the control RadDatePicker for ASP.NET AJAX

 

Thanks

Gita

Unplanned
Last Updated: 30 Jul 2020 09:06 by ADMIN
Created by: Sunil Sutar
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

One tool that can help with testing for the contrast ratio is ANDI.

 Related to https://feedback.telerik.com/aspnet-ajax/1476937-glow-skin-vista-skin-and-overall-any-links-in-the-grid-are-showing-as-blue-not-matching-what-it-has-earlier

From Admin: Share in this thread the most impactful contrast issue here, sharing the control and its setup, the skin and the exact elements that are failing the contrast test.

 
Unplanned
Last Updated: 26 Dec 2019 23:54 by ADMIN
Created by: Doug
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
I am requesting the ability to view the release history by individual control.  Currently all I see is the Release History by release.  If I want to see what the updates/enhancements between the Wizard control in my telerik version ( currently using 2018.1.117.4 ) and the latest release, I will have to view the release notes for all releases since my version and search for my component.  Would be much easier if i could just go to Wizard control and see all the updates / enhancements to this control since its release and the version for that  specific update/enhancement coincides.
Unplanned
Last Updated: 23 Dec 2019 09:08 by ADMIN

Hi , 

I was wondering if there is an option to search all my tickets by text inside the correspondence with your agent  ?

I know you have option to search by Subject text.

Are you having option to search by any text inside the ticket ? 

That would be very helpful.

Sometimes I remember we have discussed the issue, but I do not remember in what ticket in particular :(  .

It would be very helpful to have advanced search which would provide this .

THanks ,

Orit.

Unplanned
Last Updated: 02 Jan 2020 16:33 by ADMIN

Hi, I have trouble with RadScriptManager. I would like combine scripts on page to only one file. But when I enabled it, my site threw javascript error on loading.
Please help me fix it, it would also be better if you can help me understand what happened.

First image is what I set up for RadScriptManager

Secondary image is the error.



I have no idea what's Telerik.Web.UI.Point, I haven't used it anywhere.

Please help me get this error out & fix it.
Thank you.

Unplanned
Last Updated: 28 May 2020 07:53 by ADMIN
Created by: Yogesh
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
10
We are using Telerik Ajax controls in our web site. We need a functionality where user can read a barcoded value using camera device or barcode image on a web page.

We found that Ajax Barcode control has only Barcode generator functionality.

Is there a way we can read barcode value on web site?
Unplanned
Last Updated: 21 Mar 2019 16:14 by ADMIN
Created by: Suwandi
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
i have a feature request

- Image map input

Based mapify,js sample below :

http://etiennemartin.ca/mapify/

I have use it before, storing areas and values in the databases, but the output is hyperlink.

I want it as asp.net input control that have selectedvalue property, i want server side value as the result. Maybe i can borrow hiddenfield or something. But it's wasting time.

Please, add image control input into your collection. It's very usefull i guess.
Unplanned
Last Updated: 12 Feb 2019 16:15 by ADMIN

When attempting to view the page in design view, here's what it looks like:

 

Here is the markup:

    <telerik:RadPanelBar ID="RadPanelBar1" runat="server">
        <Items>
            <telerik:RadPanelItem runat="server" Expanded="True" PreventCollapse="true">
                <HeaderTemplate>
                    <div ID="content-header">
                        Auditing Report | GPO Changes For User
                    </div>
                </HeaderTemplate>
                <ContentTemplate>
                    <div ID="content-body">
                        <telerik:ReportViewer ID="ReportViewer1" runat="server" ReportBookID="" Width="100%" Height="12in">
                        </telerik:ReportViewer>
                    </div>
                </ContentTemplate>
            </telerik:RadPanelItem>
        </Items>
    </telerik:RadPanelBar>

Unplanned
Last Updated: 02 Jan 2020 16:53 by ADMIN
Created by: Etra
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Is it possible to show only year options using MonthYearPicker? I would like to show a YearPicker.
Unplanned
Last Updated: 29 May 2020 16:00 by ADMIN
Simple reproducible is attached to illustrate the problem.

A workaround may be replacing RadButtons that invokes such postbacks with regular buttons and using a form decorator

Alternatively, you can simply disable the handler URL encryption

You can also put the following in the global.asax file to prevent the version from rendering on the page markup
        protected void Application_BeginRequest(object sender, EventArgs e)
        {
			System.Web.HttpContext.Current.Items["_!TelerikVersionStampRendered"] = true;
        }
or you can add the same line in a global Page_Load handler (e.g., in a base page class or in the master page your project uses)
Unplanned
Last Updated: 11 Jun 2021 14:14 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Unplanned
Last Updated: 09 Jun 2021 18:06 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
https://www.telerik.com/support/kb/aspnet-ajax/details/cannot-scroll-telerik-control-in-ios-11.3---the-page-scrolls-instead
Unplanned
Last Updated: 24 Jan 2018 18:30 by Greg
This applies to data bound containers like grid template columns. 
For standalone control instances, see how to use the DataSelectedField here: https://docs.telerik.com/devtools/aspnet-ajax/controls/radiobuttonlist/data-binding/server-side-data-binding

When the items in the RadRadioButtonList are declared in the markup, the SelectedValue='<%#Bind("fieldName") %>' approach works as expected, but when the items are fetched from a data source, no item is pre-selected.

This works with the standard asp:RadioButtonList and so it must work with RadRadioButtonList.

Issue explanations and workarounds are available in the attached sample pages and videos below.

In short, the workarounds are:
- use declarative items when possible
- OR, use an <asp:RadioButtonList> and a <telerik:RadFormDecorator> to get uniform appearance of the radio buttons across browsers
Unplanned
Last Updated: 11 Jun 2021 09:06 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
4
Add ability to define Telerik specific ConfigSectionHandler for their settings like others (e.g.,log4Net) do.

This makes configuring environments much easier. All I need to do is point to *.Dev.config, *.Stage.config and my application is ready for the new environment.


For example, the following settings:

<configuration>
  <configSections>
    <section name="myConfigSection" type="CurrentApp.ConfigurationSectionHandler, Current" />
  </configSections>
  <myConfigSettings configSource="App_Data\Configs\MyConfigSection.config" />
  <appSettings>
    <add key="Environment" value="Local.Local"/>
...
    <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.ScriptManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.CombinedScript" value="Enabled" />
    <add key="Telerik.Skin" value="Bootstrap" />
    <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.CombinedResource" value="Disabled" />
    <add key="Telerik.Web.UI.StyleSheetFolders" value="~/Content/; ~/" />
...
  <appSettings>
<configuration>


can be changed to:

<configuration>
  <configSections>
    <section name="telerikSettings" type="Telerik.ConfigurationSectionHandler, Telerik" />
  </configSections>
  <appSettings configSource="App_Data\Configs\Local.config" />
  <telerikSettings> <!-- This section does not exist and the keys are currently inside the local.config file -->
    <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.ScriptManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.CombinedScript" value="Enabled" />
    <add key="Telerik.Skin" value="Bootstrap" />
    <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.CombinedResource" value="Disabled" />
    <add key="Telerik.Web.UI.StyleSheetFolders" value="~/Content/; ~/" />
  </telerikSettings>
...
</configuration>


or directly point to external configuration file:

<configuration>
  <configSections>
    <section name="telerikSettings"
             type="Telerik.ConfigurationSectionHandler, Telerik" />
  </configSections>
  <appSettings configSource="App_Data\Configs\Local.config" />
  <telerikSettings configSource="App_Data\Configs\Telerik.config" />
...
</configuration>


Unplanned
Last Updated: 28 Sep 2017 07:36 by ADMIN
I have a standard Asp.Net checkbox and a radcheckbox on my webform. But when I configure a sqldatasource and want to add a where clause. Set that to control and want to select the radcheckbox, then only the standard .net checkbox appears in the list. Radcheckbox does not appear. 

Check the attached screenshot for more information.
Unplanned
Last Updated: 11 Jun 2021 08:54 by ADMIN
I didn't realize this is the new trend till recently. And I just found the 360 cameras are getting cheaper and cheaper with more features. Among many other models to shoot 360 Photos and Videos, the Ricoh Theta S and Samsung 360 Gear (2017) are just around $200-$300 !

I have learned YouTube supports 360 Videos but NOT 360 Photos. FB supports both I think but it is not easy to let us embed them into our own sites. So if Telerik came out with a new Control to support these needs, it will be very great !

Thanks much.