Hello,
We are using a TelerikWizard with WizardStepperSettings Linear="false" and would like to move the labels inline with the step indicators. See this example picture:
Is dat possible?
Regards,
-Edo
I'm encountering an issue with the Telerik Notification component in my Blazor Server. The problem arises when I attempt to display a notification from a function that is not on the same thread as the component. In such cases, the notification item doesn't render in the UI.
To address this, I've made a modification to my component by replacing StateHasChanged
with InvokeAsync(StateHasChanged)
to ensure thread safety during invocation.
I'd like to seek input to determine whether this is a bug in the Telerik component or if there's a better approach to solving this issue. Any advice or suggestions would be greatly appreciated. Thank you!
USE:::
BEFORE:::
AFTER FIX::::
I'm using the Telerik Blazor components in a Blazor Hybrid app and until now they've worked perfectly. Unfortunately with the latest release I get a parse error that prevents the entire library from loading. Has anyone else seen this?
"Uncaught TypeError: t.split(...).at is not a function", source: https://0.0.0.0/_content/Telerik.UI.for.Blazor/js/telerik-blazor.js (28)"
Hi,
When is the Spreadsheet Blazor planned to release? There are conflicting answers across your forums and roadmap. We also need to plan appropriately for our customers.
R3 2023:
https://www.telerik.com/support/whats-new/blazor-ui/roadmap?_ga=2.86876376.1908345897.1694788768-1711350647.1686141934&_gl=1*3hdhro*_ga*MTcxMTM1MDY0Ny4xNjg2MTQxOTM0*_ga_9JSNBCSF54*MTY5NDc4ODc2OC42MC4xLjE2OTQ3ODkwMDQuNTEuMC4w
R1 2024:
https://feedback.telerik.com/blazor/1442151-spreadsheet-component?_ga=2.145065076.1908345897.1694788768-1711350647.1686141934&_gl=1*iwgmye*_ga*MTcxMTM1MDY0Ny4xNjg2MTQxOTM0*_ga_9JSNBCSF54*MTY5NDc4ODc2OC42MC4xLjE2OTQ3ODg5MDQuNTIuMC4w
Hey,
I'm using the TelerikDatePicker in a grid edited row and I want to stop changing values when I click the keyboard arrows. Is there any solution to stop this ?
Thanks.
I set
Expanded="true"
but after I select the second item in the drawer it collapses. Here is my code for the drawer:
<TelerikDrawer Data="@pageData"
SelectedItem="selectedItem"
Mode="@DrawerMode.Push"
Expanded="true"
MiniMode=true
SelectedItemChanged="((DrawerItem item) => SelectedItemChangedHandler(item))">
<DrawerContent>
@{
if (selectedItem is not null)
{
<AdAccount AdAccountDisplayItem="@adAccountDI" />
}
}
</DrawerContent>
</TelerikDrawer>
I have a TelerikDialog who host a component, when some logic occurs on component i would like to hide the dialog buttons, now i can do this for each button inside DialogButtons element, but this cause the dialog to show some empty space with a separation line.
I would like to hide entirely the DialogButtons element to prevent showing empty space, i tried with hidden html attribute or @if statement but it's not supported.
There is a workaround?
It woud be glad to have a Visible property on DialogButtons component in future releases.
I am trying to create something I've seen a lot on other websites. I want to create a tooltip that shows "Copy to clipboard" when I hover over a <span> element, but when I click on the <span> I want the text to change to "Copied!"
This is what I am doing now
<TelerikTooltip TargetSelector="#propvalue>span[title]" Position="@TooltipPosition.Top" ShowOn="@TooltipShowEvent.Hover" @ref="@tooltipHover">
<Template>
@{
<div>
@copyToolTip
</div>
}
</Template>
</TelerikTooltip>
<span id="myCoolSpan"
style="cursor:pointer;"
onclick="@(()=>_copyButtonHandler(value as string))"
title="this is the title">
Text of my span
</span>
private async Task _copyButtonHandler(string value)
{
copyToolTip = "Copied!";
await _clipboardService.WriteTextAsync(value);
}
Hi, I'm using TelerikMultiSelect with grouping. I tried to create a custom filter on the group field, but the value entered by the user cannot be read. Do you know how to read the value?
Petr