My project is a windows service that hosts a blazor web site and api. When deployed using an MSI, Telerik says it is not licensed. What must be done with the license file to ensure it is registered?
int portNumber =
builder.Configuration.GetValue<int>(
"Kestrel:Startup:Port");
builder.Host.UseWindowsService();
builder.WebHost.UseKestrel(options =>
{
options.Listen(IPAddress.Loopback, portNumber);
});combobox issue in blazor
=====
My pipeline is currently stuck due to this, I have a simple "dotnet install" in my pipeline that used to work and since the latest .NET SDK release (SDK 9.0.307) it started to fail with the following message:
I attempted to upgrade the Telerik.Licensing package manually to latest version but it didn't fix the issue.

I followed the example provided here
Blazor Rebind Grid from Timer - Telerik UI for Blazor
And we have a working instance of this in our website. However, the app is being used in an environment where a particular Telerik Chart and Grid are being left on for days at a time. Now I believe the issue is actually with System.Timer.Timer and Blazor more than any Telerik control.
System.Timer.Timer will create a thread process on the Client server side. This leads us into multi-threaded thread management and lifetimes and there are a number of things that may interfere. After a long period, per example more than 1 day, the timer stops working. And if the thread is working and the Blazor app does not properly call Dispose() then the thread could become orphaned.
Is there a better way to manage this with C# and Blazor? Theoretically I could have 100 users with 100 different timers as provided in the example above. Optimistically, I need only 1 timer to exist on the server, and some sort of API that polls the 1 timer I have against 100 clients. This means I am moving the timer from a C# System.Timer.Timer thread on the server towards a JavaScript based timer on the client, yes?

Hi, we are using the filter component extensively and our model has a large number of fields. It is cumbersome locating the correct field to filter on from the drop down list. Is it possible to add a filter to the field drop down as shown below the same as what is available when using filterable = true on a drop down list?
.

If I use ChartCategoryAxisBaseUnit.Years the X-axis looks great.
However, if the data doesn't have any entry for every year (rates don't necessarily change every year) I get an odd chart with dips for the years where no rate was changed, resulting in this:
As you can see, dip in 2011. I don't want to see a dip as it's not representative, what I want to see is a straight line going up from 2010 to 2012 as the 2011 is really just an interpolated label for the X axis.
Is there a solution to this issue?
Rob

Hi, I try to use Gantt so i bump into it doesn't have summery row template?
I understood that everyone is busy, so i started to explore rendered html of gantt and found 3 timeline tables! while try to fix bug with not synced scroll this code o got from here https://www.telerik.com/blazor-ui/documentation/components/gantt/timeline/templates/task
look:
I seem unable to locate the CSS class I need to use for setting column separator width. I have tried, but no luck.
Thought maybe .k-separator but that didn't seem to do anything. Dev mode inspection via Edge didn't reveal anything I could use/find.
If I specify a column like so:
<GridColumn Title="Effective">
<Columns>
<GridColumn Field=@nameof(RateDispatchItem.EffectiveDate) Title="Current" Editable="false" TextAlign="ColumnTextAlign.Right" DisplayFormat="{0:MM/dd/yyyy}" Width="7rem" />
<GridColumn Field=@nameof(RateDispatchItem.NextEffectiveDate) Title="Next" Editable="true" TextAlign="ColumnTextAlign.Right" DisplayFormat="{0:MM/dd/yyyy}" Width="7rem" />
</Columns>
</GridColumn>
I'll get column separators for entire grid (which sorta makes sense):
BUT, I can't seem to make column separators work for single titles like:
I'd like to set the column header separator to a 1px and apply system wide (just the header, no the grid content).
Hints?

I am using the Blazor TelerikGrid with column reordering, column menu, and “Reset Columns / Reset to Default” functionality enabled.
However, the grid does not revert back to the original default column layout after users reorder and hide columns, then click Reset.
Steps to Reproduce
Expected Behavior
<TelerikGrid @ref="SearchGrid"
TItem="@ChargeUIResult"
Pageable="true"
Sortable="true"
ConfirmDelete="true"
Resizable="true"
Groupable="false"
Navigable="false"
Reorderable="true"
EnableLoaderContainer="false"
FilterMode="GridFilterMode.None"
EditMode="GridEditMode.Popup"
SelectionMode="GridSelectionMode.Multiple"
ShowColumnMenu="true"
OnRead="@ReadItems"
OnRowClick="@OnRowClickHandler"
SelectedItemsChanged="@((IEnumerable<ChargeUIResult> args) => SetSelectedItem(args))"
SelectedItems="@SearchState.SelectedItems"
PageChanged="@SearchState.ClearingSelectedItem"
......>
<GridSettings>
<GridPagerSettings InputType=PagerInputType.Buttons PageSizes="@SearchState.PageSizes" ButtonCount="@SearchState.PageButtonCount" />
<GridColumnMenuSettings Sortable="true"
Lockable="false"
FilterMode="@ColumnMenuFilterMode.None" />
</GridSettings>
</TelerikGrid>
Code:
private async Task SetSelectedItem(IEnumerable<ChargeUIResult> args)
{
if (ShouldRenderSelected)
{
var selectedList = args.ToList();
SearchState.SetSelectedItems(selectedList);
StateHasChanged();
}
ShouldRenderSelected = true;
}My Question:
Is this a known issue where Reset Columns / Reset to Default does not revert the column order and visibility to the initial state?
Does the Reset feature require explicit configuration or persistence settings to restore original defaults?

I currently have a complex Diagram that is likely to have Connections visually intersecting with Shapes, but the Connections are drawn overtop the Shapes, obscuring the information on them.
Is there some way to set up the Diagram such that Connections are rendered underneath the Shapes?
