I want to refresh the Telerik schedule component. For that,
I used this link: https://docs.telerik.com/blazor-ui/components/scheduler/refresh-data
But, In my code doesn't work Rebind Method,
I want to refresh the Telerik schedule component. For that, I used this link: https://docs.telerik.com/blazor-ui/components/scheduler/refresh-data
But, In my code doesn't work Rebind Method,
I can see this problem:
Then I also try a sample code in the above link in my code (by copying and pasting). doesn't work. It generates the same issues.
Please help me!! Thank You.
How do I prevent a TextArea from being resized?
Can the character limit be set?
I'm not seeing either in the TextArea parameters in the Overview doc Blazor TextArea Overview - Telerik UI for Blazor
Hi,
Is it possible to set the maximum length of the data entered into a TelerikAutoComplete component?
I've tried catching keystrokes on the component and throwing away the surplus but this is not acceptable to our users.
Cheers
Rob
Hello, in our application we have a grid which uses Auto Generate Columns. Right now we're only using one type but we want it to accept a generic object which can one of a few types and have it automatically generate the columns for it so we don't need to make a grid for each type. Is this possible or do we need the make multiple grids?
I have a case where I need to be able to set last children in indeterminate state.
Yes, the indeterminate checkbox state for the node that has no children.
Is it possible without any special hacks?
I don't want to create my own checkboxes in templates, as I still need selecting parent.
I'm already trying to do this with reflections and getting to ProcessedData (with some successes), but I'd prefer to use native functionality.
Is there a way to change the animation type for ChartSeriesTooltip?
Now it's slides up
I read this Telerik article here and still have many questions not covered in that article:
My goal is to minimize the technology stack staying with .NET 6/7 core/EF (web APIs), C#, DOM, Blazor so that code maintenance is easier and less demanding on hired skill sets and less fragile (more resilient) Nothing against JS and TypeScript, it's just that for my development case, I want to avoid JS and mixing it in with my application.
My application requirements are fairly standard, both public facing and private web application calling web API that communicates with back end database. The UI needs to be nice/modern but doesn't need to be a marketing/sales type of website. I need easy databinding, validation, and powerful grid control (filters, groups, sorts), touch signature image capture, and there will be some interaction with cameras for image capture and OCR and of course standard reporting to a report server.
I am reading up on your training course here.
Any insight would be helpful as I get more familiar with Blazor.
Many thanks.
I need customized Click event on clicking Modal popup close button.
<WindowActions><WindowAction Name="Close" /></WindowActions>
Instead of above code, I need as below
<WindowActions>
<WindowAction Icon="@IconName.Close" OnClick="@OnCloseClick" />
</WindowActions>
async Task OnCloseClick()
{
}
Hello
I'm using Telerik.UI.for.Blazor 3.6.0
I would like to make async query on TelerikFilter ValueChanged EventCallback ( change found items count ) but when i change my implementation
from
private void OnFilterValueChanged(CompositeFilterDescriptor filter){
//code here
}
to
private async Task OnFilterValueChanged(CompositeFilterDescriptor filter){
//code here validation and get filteringRules
int count = await dispatcher.QueryAsync(new CountItemsQuery(filteringRules));
//code here
}
TelerikFilter stop working properly
When i add second filter condition and then i would like remove it nothing hapens (GUI do not reload)
Second try remove filter condition throws Exception: Index was out of range.
Am i doing something wrong or it's error?
Best regards
I have a notification component defined on my MasterLayout page like below. and then shared with all my other pages via a cascading parameter.
<TelerikNotification @ref="@NotificationReference" AnimationType="@AnimationType.ZoomOut" Class="notification"
HorizontalPosition="NotificationHorizontalPosition.Center" VerticalPosition="NotificationVerticalPosition.Top"/>
Everything works fine, but I am noticing that if i am scrolled down on a child page, the notification stays at the top of the page (off the visible screen) instead of being relative to the top of the window. How can i make sure the notification is always visible to the end users regardless of how far down a page they might be scrolled too?
Thanks in advance,