I have a grid loaded with the OnRead event handler to allow server paging.
Now, in the component OnAfterRender event i read some grid settings with an async request to server and then i update the grid state with Grid.SetState.
This approch work well but cause the grid to load twice: the first one by default OnRead call on component load, and the other one when the call to get settings complete and update the grid state.
There is a way to delay the grid load, to be done only when i have read the grid settings, so only one load occurs?
Thanks
I am having difficulty implementing a custom Telerik Numerical Textbox component in a Blazor application, specifically with setting up two-way data binding.
In my Razor page, I'm trying to use the custom component like so:
<CustomNumericalTextBox Id="ID" Format="P" Min="0" Max="1" Step="0.01m" @Bind-Value="@Model.Value1" />
In the code-behind of this page, I have a model class:
public class Model
{
public decimal Value1 { get; set; } = "Something"
}
The custom component is defined in a separate Razor page:
@inherits CustomNumericalTextBoxBase
<FormItem>
<Template>
<TelerikNumericalTextBox Id="@Id" Format="@Format" Min="@Min" Max="@Max" @bind-Value="@BindValue">
</TelerikNumericalTextBox>
</Template>
</FormItem>
public class CustomNumericalTextBox
{
[Parameter]
public decimal BindValue { get; set; }
[Parameter]
public EventCallback<decimal> BindValueChanged { get; set; }
[Parameter]
public string Format { get; set; } = string.Empty;
[Parameter]
public string Min { get; set; } = "0";
[Parameter]
public string Max { get; set; } = "1";
[Parameter]
public string Id { get; set; }
}
Which component can I use to simulate WinForms GroupBox, to group some fields in a square with a small title on the upper left? (See example in image1 from WinForms).
The nearest thing I've found is FormGroup, but doesn't visually group fields in a square, shows only upper line with title (see example on image2, groups "Personal information" and "Employee information"). This way, if after the group I have other fields not in a group (so no title needed for them) the user doesn't know when the group finishes.
Thank you.
Hello,
After updating to 4.3.0 for Blazor, the close button on the notifications seem to be appearing at the bottom left.
Thanks,
Tony
The stepper control looks very useful, however the examples are quite limited. I would like to know how I can use a button to change the steps instead of clicking on the stepper control itself. Also, are there any better examples of using validation on each step, such as, when clicking the button to change steps, trigger validation for that step?
Thank you,
Jim
I create a PDF-Document on the fly and want print it immediately afterwards.
Actually I am using TelerikPdfViewer to show the PDF on screen but the user has to click on the Print-Button and the another time in the follwing print dialog from the browser.
I would like to print immediately to the default printer without preview.
And to spice it up: I would like to print it 3 times!
Is there by any chance to achieve that ?
HI:
Im considering to integrate jquery kendo components in Blazor server side app. Do you have a guide to do this?
I found this:
https://github.com/telerik/blazor-ui/tree/master/common/kendo-in-blazor
If you have something better, please advise me.