Hi,
we are evaluating the Blazor UI components.
We didn't find any informations about overriding CSS.
Is this possible at all on all components and specially on the datepicker?
Greetings,
Robert
Hey Guys!
My grid pagination is showing "1 OF 10 items", how to change language of Telerik Blazor components? Particularly, pt-BR :)
Tks
Hi, I read a post here (https://www.telerik.com/forums/is-there-a-supported-version-of-ui-for-blazor-for-the-released-version-of-net-core-eg-3-0) on which Marin said that you dont support Blazor for .NET 3.0 and now I have a problem. If I download SDK .NET 3.1.100 prev2 it doesnt support Blazor Webassembly projects (https://stackoverflow.com/questions/58087120/visual-studio-2019-version-16-3-0-and-blazor-web-assembly-app-template) that exactly what I want to create. How can I solve the problem and use Telerik on .NET 3.0?
Thank you
If one wanted to use .net core 3.0 is there a version of UI for Blazor one could use?
Just updated to Telerik.UI.for.Blazor 2.2.1, but was having the problem before updating as well. I suspect its just something Im missing.
This section
https://docs.telerik.com/blazor-ui/getting-started/server-blazor
<
head
> . . . <
script
src
=
"_content/telerik.ui.for.blazor/js/telerik-blazor.js"
defer></
script
>
<!-- For Trial licenses use <script src="_content/telerik.ui.for.blazor.trial/js/telerik-blazor.js" defer></script> -->
</
head
>
When I load my page, im getting 404 errors in the dev console for telerik-blazor.js. I am adding dependencies to an existing Blazor project I started.
We have the private nuget feed setup. So that much looks right. What am I missing?
This is in _Host.cshtml
<
app
>
@(await Html.RenderComponentAsync<
App
>(RenderMode.ServerPrerendered))
</
app
>
This is my MainLayout.cshtml
@inherits LayoutComponentBase
<
TelerikRootComponent
>
<
NavMenu
/>
<
div
class
=
"container-fluid"
>
@Body
</
div
>
</
TelerikRootComponent
>
I have tried to implement the dropdownlist and the data is being populated to the control, but the control will not dropdown when selected on.
I have tried to changed from Server/Prerender and also tried a static list. I also have the same issues with Telerik menus. What do I have configured wrong.
Running Blazor UI 2.1.1
<TelerikDropDownList Data="@DropDownListData" @bind-Value=@SelectedValue ValueField="ID" TextField="Organization">
</TelerikDropDownList>
<br />Selected product: @SelectedValue
@code {
public IEnumerable<OrgModel> DropDownListData { get; set; }
public int SelectedValue { get; set; } = 3;
WeatherForecast[] forecasts;
OrgModel[] Orgs;
protected override async Task OnInitializedAsync()
{
forecasts = await ForecastService.GetForecastAsync(DateTime.Now);
DropDownListData = await OrgService.Get_OrgList_Async();
}
//protected async Task OnAfterRenderAsync()
//{
// forecasts = await ForecastService.GetForecastAsync(DateTime.Now);
// DropDownListData = await OrgService.Get_OrgList_Async();
//}
I have a parent component when contains a child component with a TelerikChart. Using cascading parameters, when I change a value in the parent component it cascades to the child and I rerun queries to create the proper data for the chart. Often times, but no all the time, a chart will rerender with some of the old data mixed in with some of the new data, even though the data model only contains the new data.
Is there a way to force the chart to totally clear out before rerendering?
For example, the menu component. Where are all the available attributes and events listed for this component. Yes, I see in the examples a "Data" and "orientation" attribute are used, but seems this should be explained in an "api" section for each component?
I see the API Reference link but this seems like just a dump of the entire library, rather than a component-by-component reference?
However, same goes for the other components as well.