Sorry if this is not the right forum...I'm trying to push the UI for Blazor nuget package to Azure Artifacts for the build pipeline. I can't use a service to connect directly to Nuget.Telerik. I already have the package added to my project and its working fine. I installed it from the .msi
I'm following this article: https://www.telerik.com/blogs/azure-devops-and-telerik-nuget-packages and I downloaded nuget.exe v.6.7.0. When I run the command specified:
C:\Users\<my profile>\source\repos>nuget.exe push -Source "Telerik" -ApiKey az "C:\Users\<my profile>\Documents\TelerikPackages\Telerik.UI.for.Blazor.4.4.0.nupkg"and I get an error "ERROR: This version of nuget.exe does not support updating packages to package source 'Telerik'." I 'Googled' this error and got nothing! <ugh>
Any suggestions really be appreciated!

<div class="btn-toolbar mb-2 mb-md-0">
<div class="btn-group mr-2">
<TelerikButton Icon="Calendar" Primary="true" OnClick="@(_ => DateRangeFilter(3))">3 Months</TelerikButton>
Icon="Calendar" Primary="true" - both of the properties tell it does not exist in the current context.
Good morning. I've encapsulated a TelerikGrid in a component. I would like to pass to this component the "Data" parameter to be assigned to the encapsulated TelerikGrid. I haven't found which type to define for the parameter "Data" to be received.
Example of TelerikGrid encapsulated in the component, I would like to know what type must be the parameter "ReceivedDataParameter". (I've put ??? in the code to show the information I need). Thank you.
<TelerikGrid Data=@ReceivedDataParameter></TelerikGrid>
@code {
[Parameter]
public ??? ReceivedDataParameter { get; set; };
}


I had a problem with the TelerikGridLayout, in conjunction with a MediaQuery where on First render it was not rendering any of the objects.
After a lot of investigation I found an article that used an IEnumerable to bind to the grid and not a list. After using an IEnumerable, my objects rendered perfectly and were responsive.
Anyone having problems with the TelerikGridLayout, make sure to use an IEnumerable and not a List to bind to the grid.
Is it possible to stack a series in a Range Column Chart?
We have created a chart using an invisible baseline series to shunt our series upward. But the hover state of the invisible series cannot be configured. https://blazorrepl.telerik.com/GxkiGIvF15qirZPe20. Does anyone have any other ideas of chart types that may be more suitable?
<GridCommandColumn Width="50px" Title="Actions">
<GridCommandButton Command="Edit" Icon="@FontIcon.Pencil"></GridCommandButton>
<GridCommandButton Command="Delete" Icon="@FontIcon.Trash" ThemeColor="error"></GridCommandButton></GridCommandColumn>
<GridColumn Title="First Name" Field="@(nameof(SecurityAdminDto.firstName))" Width="100px">
<HeaderTemplate>
<div class="column-title">
First Name
</div>
</HeaderTemplate>
</GridColumn>
<GridColumn Title="Last Name" Field="@(nameof(SecurityAdminDto.lastName))" Width="100px">
<HeaderTemplate>
<div class="column-title">
Last Name
</div>
</HeaderTemplate>
</GridColumn>
<GridColumn Title="Email" Field="@(nameof(SecurityAdminDto.email))" Width="100px">
<HeaderTemplate>
<div class="column-title">
Email
</div>
</HeaderTemplate>
</GridColumn>
<GridColumn Title="EmployeeId" Field="@(nameof(SecurityAdminDto.employeeId))" Width="100px">
<HeaderTemplate>
<div class="column-title">
EmployeeId
</div>
</HeaderTemplate>
</GridColumn>
<GridColumn Title="NetworkId" Field="@(nameof(SecurityAdminDto.networkId))" Width="100px">
<HeaderTemplate>
<div class="column-title">
NetworkId
</div>
</HeaderTemplate>
</GridColumn>
<GridColumn Title="Security Admin" Field="@(nameof(SecurityAdminDto.isSecurityAdmin))" Width="100px">
<HeaderTemplate>
<div class="column-title">
Security Admin
</div>
</HeaderTemplate>
</GridColumn>
<GridColumn Title="FSO" Field="@(nameof(SecurityAdminDto.fsoCodes))" Width="100px">
<HeaderTemplate>
<div class="column-title">
FSO
</div>
</HeaderTemplate>
<Template>
@{
var cellValue = ((SecurityAdminDto)context).fsoCodes;
int i = 0;
@foreach(var fsoCode in cellValue)
{
if (i != 0)
{
<span>, </span>
}
<span>@fsoCode</span>
i++;
}
}
</Template>
</GridColumn>
<GridColumn Title="FTC" Field="@(nameof(SecurityAdminDto.isFTC))" Width="100px">
<HeaderTemplate>
<div class="column-title">
FTC
</div>
</HeaderTemplate>
</GridColumn>
<GridColumn Title="HR" Field="@(nameof(SecurityAdminDto.hrCodes))" Width="100px">
<HeaderTemplate>
<div class="column-title">
HR
</div>
</HeaderTemplate>
<Template>
@{
var cellValue = ((SecurityAdminDto)context).fsoCodes;
int i = 0;
@foreach (var hrCode in cellValue)
{
if (i != 0)
{
<span>, </span>
}
<span>@hrCode</span>
i++;
}
}
</Template>
</GridColumn>
<GridColumn Title="Contracts" Field="@(nameof(SecurityAdminDto.contractsCodes))" Width="100px">
<HeaderTemplate>
<div class="column-title">
Contracts
</div>
</HeaderTemplate>
<Template>
@{
var cellValue = ((SecurityAdminDto)context).contractsCodes;
int i = 0;
@foreach (var contractCode in cellValue)
{
if (i != 0)
{
<span>, </span>
}
<span>@contractCode</span>
i++;
}
}
</Template>
</GridColumn>
</GridColumns>
</TelerikGrid>Hello Team,
I have a requirement where I need to use microsoft word editor in blazor front end application. I found the closest component to it is the TelerikEditor. But it has a lot of limitations (like pages, columns, mail merge fields, footers etc). So, I need to do some customizations in the telerik editor (https://blazorrepl.telerik.com/QRkMwdvc41pMT93w35).
On initial research, I found that there is a library, Blazor Dev Express (https://docs.devexpress.com/Blazor/401891/components/rich-text-editor) that offers an editor similar to that of ms-word.
Is there any similar editor in Telerik UI for Blazor or is anything similar coming up soon in future upgrades?
