We are in search of a word processor component for Blazor, that delivers a user experience comparable to word processors such as Google Docs, DevExpress, or Syncfusion. Our core requirements include features document formatting (page size, orientation, etc), importing docx, saving as docx.
Could you provide insight into whether TelerikEditor, coupled with appropriate word processing libraries, is capable of achieving this level of functionality?
Thank you.

Hello,
i want to bind the autocomplete to a list of object. But the data in the template is empty:
The code is this:
Kunde:
<TelerikAutoComplete Data="@DataCustomer" TItem="@Customer" ValueChanged="@((string value) => OnComboCustomerValueChanged(value))">
<ItemTemplate>
@(nameof(Customer.customerName))
</ItemTemplate>
<FooterTemplate>
<h6>Anzahl: @DataCustomer.Count()</h6>
</FooterTemplate>
<NoDataTemplate>
<div class="no-data-template">
<TelerikSvgIcon Icon="@SvgIcon.FilesError" Size="@ThemeConstants.SvgIcon.Size.Large"></TelerikSvgIcon>
<p>No items available</p>
</div>
</NoDataTemplate>
</TelerikAutoComplete>protected override async Task OnInitializedAsync()
{
List<Customer> customers = new List<Customer>();
customers.Add(new Customer()
{
customerId = "",
customerName = ""
});
DataCustomer = customers;
}
private void OnComboCustomerValueChanged(string value)
{
ComboCustomerValue = value;
if (value != null && value.Length > 3)
{
if (DataCustomer == null)
{
List<Customer> Data = new List<Customer>();
}
if (DataCustomer.FirstOrDefault(item => item.customerId == value.ToString()) == null)
{
IO.Swagger.Api.CustomerApi customerApi = new IO.Swagger.Api.CustomerApi("https://server:8080");
foreach (var itemsFound in customerApi.ApiV1CustomerIdGet(Convert.ToInt32(value)))
{
if (DataCustomer.FirstOrDefault(item => item.customerId == itemsFound.Id.ToString()) == null)
{
DataCustomer.Add(new Customer()
{
customerId = itemsFound.Id.ToString(),
customerName = itemsFound.Name + @" (" + itemsFound.Id.ToString() + @")"
});
}
}
}
}
}What have i made wrong?
Kind regards
Jens
Hi,
We currently make use of the heatmap element like this.
Depending on a value we would like to add diagonal lines over some of the boxes like this
There doesn't seem to be an template for the component and I haven't been to add it in as a background/overlay.
Is there any possible way to achieve this?
Hello,
I'm using the PanelBarComponent to navigate between Pages.
Right now I am facing the following problems:
1)
when a page where unsaved user input is detected triggers a user prompt before the location is changed, i.e. 'are you sure ..' this breaks the selection of the panelbar. Wether the users decides to stay on the page or discarcd the changes and confirms the location change the selectedItem is set the last clicked item.
2)
a page containing a link or any other means of a location change, i.e. the location change is not triggered by the clicking the corresponding item on the panelbar also breaks the selection. In this case the selectedItem is not updated at all.
3)
if the user uses a bookmark to navigate to the page the panelbar doesn't show any selection


I'm having trouble with my grid where I am unable to page through my results. I have 200 items in the grid and when I click on any of the buttons on the pager nothing happens. Here is my code
Bonus points if someone can make me understand why my Tooltip isnt working either lol.
<TelerikGrid class="NewPairsGrid"
Data="@Pairs"
AutoGenerateColumns="false"
RowHeight="15"
Height="1000px"
Pageable="true"
PageSize="25"
><GridColumns><GridColumn Title="Pair Info" width="200px"><Template Context="dataItem"><div>
@DisplayTokenImage(dataItem as EthPairTradeInfoVDto)
@($"{(dataItem as EthPairTradeInfoVDto).TokenSymbol} / {(dataItem as EthPairTradeInfoVDto).LpTokenSymbol} - {(dataItem as EthPairTradeInfoVDto).TokenName}")
</div></Template></GridColumn><GridColumn Title="Total Price ETH" width="150px"><Template Context="dataItem"><div>
@FormatPrice(dataItem as EthPairTradeInfoVDto)
</div><div>
@if (dataItem is EthPairTradeInfoVDto ethPairTradeInfoVDto)
{
var UsdPrice = ethPairTradeInfoVDto.CurrentPriceUsd.GetValueOrDefault();
@if (UsdPrice > 0)
{
@($"${UsdPrice} USD")
;
}
else
{
@("Looking for USD Price.../")
;
}
}
</div></Template></GridColumn><GridColumn Field="PairCreatedTimeStamp" Title="Token Age" width="75px"><Template Context="dataItem">
@if (IsLessThanHour(dataItem as EthPairTradeInfoVDto))
{
<i class="fas fa-leaf"></i>
}
@if (dataItem is EthPairTradeInfoVDto ethPairTradeInfoVDto)
{
var timestamp = CalculateElapsedTime(dataItem as EthPairTradeInfoVDto);
<span class="tooltip-target">@timestamp</span><TelerikTooltip TargetSelector=".tooltip-target" Width="250px" Height="150px" Position="@TooltipPosition.Right"><Template Context="ttipContext"><span>
Timestamp: @(ttipContext.DataAttributes)
</span></Template></TelerikTooltip>
}
@* @CalculateElapsedTime(dataItem as EthPairTradeInfoVDto) *@
</Template></GridColumn></GridColumns></TelerikGrid>
