Telerik Forums
Community Forums Forum
2 answers
13 views
would like to know how to delete the telerik user account I had to create in order to download a trial version a while ago. Unfortunately, I couldn't find any hints on how to do this. :-( Maybe someone
Peter
Telerik team
 answered on 14 Aug 2025
1 answer
29 views

Hello Telerik team,

I am currently working on a report using Telerik Report Designer, and I need to allow users to filter data based on a date range (i.e., "from" and "to" date). In Kendo UI, we have a convenient DateRangePicker component that allows selecting both dates in one UI control.

My question is:
Does Telerik Report Designer support a single “date range” parameter, or do we need to use two separate parameters? DateTime parameters (e.g., DateFrom and DateUntil) to simulate this functionality?

Is there any built-in way to do it using one parameter, or a recommended approach to simulating a range? Please let me know.

Regards,

Prabesh Shrestha

Petar
Telerik team
 answered on 27 May 2025
2 answers
40 views

 

Hi Telerik Team,

I’m designing a Telerik Report Designer report that includes a line chart with markers. I want to replicate a feature that exists in Kendo UI line charts, where:

  • Clicking on a legend item toggles (hides/shows) the corresponding series in the chart.

This is especially helpful when multiple lines are present, and users want to focus on specific data. Here’s an example screenshot of the chart I’m working with:

My questions:

  1. Does Telerik Reporting support interactive legend click behavior similar to Kendo UI Charts?

  2. If not directly supported, is there any workaround that can help achieve this functionality?

 

Regards,
Prabesh Shrestha

 

 

Prabesh
Top achievements
Rank 1
Iron
Iron
 updated answer on 20 May 2025
1 answer
117 views

Hy,

I want to customize the Kendo-theme-default (last version -> 10.3.1) in my blazor project.

To install npm package I followed the documentation: Telerik and Kendo UI Default Theme Overview | Design System Kit:

But when I import the package inside my scss file style, I have the following error and i can't compile the scss file:

The kendo-theme-default package is correctly located under node_modules. 

My scss file:

My project files:

Can you help me?

Thanks

 

Emil
Telerik team
 answered on 11 Mar 2025
1 answer
45 views

 

I am using RadNavigation for my application and currently it looks like this.

I need 2 changes in the above settings.

1. The first level expansion, i. e the Sandwich menu at the top, when the screen is expanded, will be expanded horizontally. I need it to be expanded vertically.

(Currently the main Menu's, Menu 1, Menu 2 etc showing vertically as the screen is not expanded. If the screen is expanded, they will start showing Horizontally.)

2. The second level expansion Menu 2 --> Menu 2.1 --> Menu 2.1.1 is expanding vertically. I want it to be expanded Horizantally as shown in the below image. 

 

How can i achieve this with RadNavigation Menu? Can you please help?

Vasko
Telerik team
 answered on 06 Feb 2025
1 answer
35 views

 

Currently, I am using RadPanelBar in my application.

The expansion is exactly as shown here in the example here - https://demos.telerik.com/aspnet-ajax/panelbar/examples/overview/defaultcs.aspx?_gl=1*1ii0316*_gcl_au*NjQ4MjM2MzI0LjE3Mzc0MTgwNTU.*_ga*MTQwMDI1ODExNy4xNzM3NDE4MDU1*_ga_9JSNBCSF54*MTczODczMzkwNC4xMC4xLjE3Mzg3MzY1NzAuMi4wLjA.

However, I want to change it to look like this -

 

Can you please suggest if this can be done with the existing RadPanelBar control? If yes, how can I do this.

If not, with which other control I can achieve this?

 

 

 

 

 

Rumen
Telerik team
 answered on 05 Feb 2025
1 answer
144 views

I'm developing a project, and the ask is to show a popup/dialog-box when row is in edit mode and the user clicks on a specific input field in a row then a popup will be displayed.
Content of the opened window will be the same as column's data that is a Textarea.

 

I tried to implement through events associated to kendo-textarea, unfortunately they're not getting invoked. 


Martin Bechev
Telerik team
 answered on 04 Dec 2024
2 answers
57 views

Hello,

I have a web page with a number of elements, including labels, buttons, a file uploader, and some text boxes. Also, I'm using the RadAjaxManager and RadAjaxLabel. This is a picture of a few of the elements.

I need to update some of the elements, so I've set up my RadAjaxManager like this:


<telerik:RadAjaxManager ID="RadAjaxManager3" runat="server" >    
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadButtonCreate">
            <UpdatedControls>                    
                <telerik:AjaxUpdatedControl ControlID="RadLabel1" LoadingPanelID="RadAjaxLoadingPanel1"/>
                <telerik:AjaxUpdatedControl ControlID="RadAsyncUploadFile1" LoadingPanelID="RadAjaxLoadingPanel1"/>                 
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>

This code doesn't impact my layout. However, when I added a the textbox to the UpdatedControls....


<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" >    
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadButtonCreate">
            <UpdatedControls>                    
                <telerik:AjaxUpdatedControl ControlID="RadLabelTicketInfo" LoadingPanelID="RadAjaxLoadingPanel1"/>
                <telerik:AjaxUpdatedControl ControlID="RadAsyncUploadSARFile" LoadingPanelID="RadAjaxLoadingPanel1"/> 
                <telerik:AjaxUpdatedControl ControlID="RadTextBoxDescription" LoadingPanelID="RadAjaxLoadingPanel1"/>                    
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>

...My website changes to this:

When I remove the <telerik:AjaxUpdatedControl ControlID="RadTextBoxDescription" LoadingPanelID="RadAjaxLoadingPanel1"/> element from the UpdatedControls, the layout goes back to what is shown in the first picture.

 

Can someone please explain why adding elements to the UpdatedControls section would affect the placement of the other webpage elements? I'd like to update the content of these textboxes, so how can I add them to the UpdateControls without distorting the layout?

 

Thanks,

Mike

 

Rumen
Telerik team
 answered on 22 Oct 2024
0 answers
52 views

I have been asked to create a "master report template" at my company in order to standarize templates from which all other reports can inherit from. I read this old forum question which was answered with an example code compressed into a .rar file, but it seems to be outdated, is there any more recent examples or documentation on how to create/implement a master report template and integrate it into my report viewer?

 

Thanks.

Esteban
Top achievements
Rank 1
 asked on 04 Sep 2024
0 answers
88 views

In radscheduleview, added multiple resources and grouping based on custom resourceview, Also, added custom datatemplate for GroupHeaderContentTemplateselector

In the below yellow hightlighted place , (group header ) need to add Resource related information for the day in weekview. But couldnot  get exact datacontext of the group header while switching between dates,  Only able to get IResource from Groupheaderdescriptions. In IResource having only few properties for cusomization. 

So, could not able to bind any property to Group header template. Please suggest on this?

 

Srinivasan
Top achievements
Rank 1
 updated question on 13 May 2024
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?