Telerik Forums
Community Forums Forum
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
1 answer
53 views
- Hello everyone, I have a problem with the expanded details that I have a dataItem in the grid and I will change the data. So I want, when the detail dataItem.ListChild.Length>0 will be expanded and I can collapseit again
Nadya | Tech Support Engineer
Telerik team
 answered on 21 Aug 2024
1 answer
60 views

Hi,

please remove my account & all data from your system

Best regards

Nick Iliev
Telerik team
 answered on 15 Aug 2024
1 answer
71 views

For the love of all that is holy, how do you manage/unsubscribe from all of the emails?! All the "make the most of" and "tips and tricks" and so on.

I understand when I created the account you auto-subscribed me, but there is NO UNSUBSCRIBE LINK in the emails, and nowhere in my user account that I've found to manage/unsubscribe from these emails.

Nick Iliev
Telerik team
 answered on 07 Aug 2024
1 answer
96 views
How can I resolve issues with integrating an age calculator into a Telerik-based application? Specifically, I'm facing problems with accurate age calculations and data synchronization between the calculator and Telerik components. Any advice or solutions would be appreciated.
Rumen
Telerik team
 answered on 05 Aug 2024
0 answers
70 views

Hi,

 

I use Kendo components for Angular for my application. I had to use Scheduler component, I installed 13.0.3 version of

  • @progress/kendo-angular-scheduler
  • @progress/kendo-angular-common
  • @progress/kendo-angular-dateinputs
  • progress/kendo-angular-popup
  • @progress/kendo-angular-icons
  • @progress/kendo-angular-tooltip

The rest dependent packages are below 13.0.3 version. The scheduler is successfully loaded. However, when I click on date input, I get this error on console:

What is the reason of this error and what is the solution for that?

 

P.S. When I upgraded @progress/kendo-angular-buttons package to 13.0.3 version, I received this error message on console: "Directive WindowMinimizeActionDirective is attempting to extend component ButtonComponent". So, I downgraded to 8.2.2 version. Now, I do not have the error message related with Buttons.

 

Please, help to resolve the issue of "element.getBoundingClientRect".

 

Best regards.

Dostonbek
Top achievements
Rank 1
 asked on 29 Jul 2024
1 answer
74 views
Hi Team,

I am currently evaluating the Gantt feature and encountering some issues. Specifically, I am unable to perform operations such as drag events, planned vs. actual feature, and export to PDF, which are available in the Gantt jQuery control but not working in the Kendo React control.

Could you please provide me with a workaround for these features?

Thank you for your assistance.

Best Regards 

Vessy
Telerik team
 answered on 11 Jul 2024
0 answers
128 views

I´m working in a blazor wasm hosted app, i had problems with posting on IIS so searching solutions, I installed de nugget packet: Microsoft.NETCore.App.Runtime.Mono.browse-wasm, then it seems to be incompatible with something and I unistalled, then the app stop working and bring me this error:

VM11 blazor.webassembly.js:1 Error: One or more errors occurred. (Error: Could not find 'Blazor._internal.attachRootComponentToElement' ('attachRootComponentToElement' was undefined).) at Jn (marshal-to-js.ts:349:18) at Tl (marshal-to-js.ts:306:28) at 00b21cf6:0x1fad7 at 00b21cf6:0x1bf9f at 00b21cf6:0xf16c at 00b21cf6:0x1e7f1 at 00b21cf6:0x1efe7 at 00b21cf6:0xcfbc at 00b21cf6:0x44213 at e.<computed> (cwraps.ts:338:24)

 

the project si call Risk.

This is my Risk.Server.csproject:

<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> </PropertyGroup> <ItemGroup> <PackageReference Include="AutoMapper" Version="12.0.1" /> <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.1" /> <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.1" /> <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.1" /> <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.1" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.1"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" /> <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.3.1" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Client\Risk.Client.csproj" /> <ProjectReference Include="..\Shared\Risk.Shared.csproj" /> </ItemGroup> </Project>

and this is my index.html:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <title>Risk</title>
    <base href="/" />
    <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
    <link href="css/app.css" rel="stylesheet" />
    <link href="Risk.Client.styles.css" rel="stylesheet" />
    <link rel="stylesheet" href="_content/Radzen.Blazor/css/software-base.css">
</head>

<body>
    <div id="app">Loading...</div>

    <div id="blazor-error-ui">
        An unhandled error has occurred.
        <a href="" class="reload">Reload</a>
        <a class="dismiss">🗙</a>
    </div>
    <script src="_framework/blazor.webassembly.js"></script>
    <script src="_framework/blazor.webassembly.js" autostart="false"></script>
    <script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        window.downloadFile = async (fileName, byteArray) => {
            const blob = new Blob([new Uint8Array(byteArray)]);
            const arrayBuffer = await blob.arrayBuffer();
            const url = URL.createObjectURL(blob);
            const anchorElement = document.createElement('a');
            anchorElement.href = url;
            anchorElement.download = fileName ?? '';
            anchorElement.click();
            anchorElement.remove();
            URL.revokeObjectURL(url);
        }
    </script>


</body>

</html>
can someone help for this error, thanks.

 

 

 

Miguel
Top achievements
Rank 1
 asked on 11 Jul 2024
1 answer
71 views
When creating a new project with the latest the version on ThemeBuilder, changing the $primary color value does not update ThemeBuilder or the compiled CSS variable (--kendo-color-primary) when exporting. Changing any other color value works as expected, see the screenshot below:
Nick Iliev
Telerik team
 answered on 28 Jun 2024
0 answers
157 views

Hi we're receiving this error regarding Kendo.Core.Export.dll however the DLL is present. Any ideas? There are similar issues here in the Community Forums however we have yet to discover a solution.

 

Line 18 in Program.cs:

builder.Services.AddControllersWithViews()

 

Complete exception message:

Application: w3wp.exe
CoreCLR Version: 8.0.424.16909
.NET Version: 8.0.4
Description: The process was terminated due to an unhandled exception.
Exception Info: 
Application '/LM/W3SVC/2/ROOT/appname' with physical root 'C:\webapplications\appname\06072024\' hit unexpected managed exception, exception code = '0xe0434352'. First 30KB characters of captured stdout and stderr logs:
Unhandled exception. System.IO.FileNotFoundException: Could not load file or assembly 'Kendo.Core.Export, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'Kendo.Core.Export, Culture=neutral, PublicKeyToken=null'
   at System.Reflection.RuntimeAssembly.<InternalLoad>g____PInvoke|49_0(NativeAssemblyNameParts*, ObjectHandleOnStack, StackCrawlMarkHandle, Int32, ObjectHandleOnStack, ObjectHandleOnStack)
   at System.Reflection.RuntimeAssembly.InternalLoad(NativeAssemblyNameParts*, ObjectHandleOnStack, StackCrawlMarkHandle, Boolean , ObjectHandleOnStack, ObjectHandleOnStack)
   at System.Reflection.RuntimeAssembly.InternalLoad(AssemblyName, StackCrawlMark&, AssemblyLoadContext , RuntimeAssembly , Boolean )
   at System.Reflection.RuntimeAssembly.InternalLoad(String, StackCrawlMark&, AssemblyLoadContext )
   at System.Reflection.Assembly.Load(String)
   at Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartManager.<>c.<GetApplicationPartAssemblies>b__8_0(ApplicationPartAttribute name)
   at System.Linq.Enumerable.SelectArrayIterator`2.Fill(ReadOnlySpan`1, Span`1, Func`2)
   at System.Linq.Enumerable.SelectArrayIterator`2.ToArray()
   at System.Linq.Buffer`1..ctor(IEnumerable`1)
   at System.Linq.OrderedEnumerable`1.GetEnumerator()+MoveNext()
   at System.Linq.Enumerable.SelectManySingleSelectorIterator`2.MoveNext()
   at System.Linq.Enumerable.ConcatIterator`1.MoveNext()
   at Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartManager.PopulateDefaultParts(String)
   at Microsoft.Extensions.DependencyInjection.MvcCoreServiceCollectionExtensions.GetApplicationPartManager(IServiceCollection, IWebHostEnvironment)
   at Microsoft.Extensions.DependencyInjection.MvcCoreServiceCollectionExtensions.AddMvcCore(IServiceCollection)
   at Microsoft.Extensions.DependencyInjection.MvcServiceCollectionExtensions.AddControllersCore(IServiceCollection)
   at Microsoft.Extensions.DependencyInjection.MvcServiceCollectionExtensions.AddControllersWithViewsCore(IServiceCollection)
   at Microsoft.Extensions.DependencyInjection.MvcServiceCollectionExtensions.AddControllersWithViews(IServiceCollection)
   at Program.<Main>$(String[]) in C:\AppName\Program.cs:line 18

Alex
Top achievements
Rank 1
 asked on 07 Jun 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?