Hi,
I'm retrieving data using a select query into a datatable. When I try to show this data in a grid with the AutoGenerateColumns=true, the data is not shown.
Is there a way to show the data from a datatable in a grid with automatic generation of the columns? The number of columns in the query are dynamic, before execution of the query I don't know the number of columns.
Thanks
I am trying to set focus on a TelerikTextBox when a window is opened, but it would appear the call to js is being made before the window actually opens so the element is null.
Is there anyway to wait until the window is actually open and then call js to set focus on the textbox?
private async Task NewTicketClick(){ newTicket = new NewTicketViewModel { CreatedBy = userId, Owner = userId }; showNewTicketWindow = true; await jSRuntime.InvokeVoidAsync("focusInputFromBlazor", new[] { ".defaultFocus" });}Hello,
I'm am loading a flat list with parent-child elements (the children elemnt having a reference to the parent element through a ParentId) into an ObservableCollection and when the data is presented in the TreeList Component the parent nodes are collapsed. Is there a possibility to set the treelist to appear with all the parent elements that have children expanded?
Best regards,
Cipri
Hi,
The TileLayout is great. I'm searching a way to dynamically switch the definition according to media breakpoints like width of the screen. Say, on a wide screen I want to present my data in 4 columns, but on a small screen the tiles a very compressed so I would like to have them reordered in 2 or even only 1 column. Is that possible?
We are building a new server-side Blazor web site that gets its data from our existing ASP.NET Core 3.1 web API hosted in Azure. The API accepts PageSize, PageNumber and a dictionary of field names and values to be used for filtering and sorting, and returns the specified page of records that are filtered, and sorted against the full database table data.
We would prefer to use a commercial Blazor grid component that displays FilterRow UI elements and use the user input values and FilterRow element assigned field names to pass the field names and filter values to our API for filtering. We also want to capture the Sort (column header click actions) to pass the sort filed name and direction to the API and finally, we want to capture the component's pager values for current PageNumber and PageSize to pass to our API. That way, our API can filter, sort and page the full data in the database and just return the result set to be displayed.
We have a working version of the TelerikGrid v2.5.1 athat handles the paging the way we want, since you supply the GridReadEventArgs in the OnRead event that include the PageNumber and PageSize, but the sort and filter elements appear to be bound to the current data and so far, we have not been able to find a way to pull the filter and sort expression out to pass on to our API in a way that actually works.
Is what we want to do at all possible with your 2.5.1 build of TelerikGrid for Blazor?
Hi,
Can I have two way binding to SelectedItems and to SelectedItemsChanged event at the same time like the followings:
<TelerikTreeView Data="Items" @bind-SelectedItems="SelectedItems" @bind-SelectedItems:event="SelectedItemsChanged">
<TreeViewBindings>
<TreeViewBinding IdField="Code" TextField="Title" />
</TreeViewBindings>
</TelerikTreeView>
working? As Blazor allows binding to event handlers by convensions?
Hi , I am trying to use blazor demo . When I try to get code from demo.blazor my code cant find @using TelerikBlazorDemos.DocumentProcessing . What can I do about this ?