I have a checkbox of type TelerikCheckBox inside a column in my Grid using the code below.
If I press the edit mode of the grid the checkbox can be altered but the type of the checkbox changes from class="k-checkbox telerik-blazor" to type input so the layout changes (see attachment)
in my razor.cs file
private
ObservableCollection<ModelVM> GridData {
get
;
set
; }
Inside my razor file I have this (simplified)
<TelerikGrid Data=
"@GridData"
OnEdit="@EditHandler"
OnUpdate="@UpdateHandler">
<GridColumns>
<GridColumn Field=
"isChecked"
Title=
"Selected"
Editable=
"true"
>
<Template>
@{
var isChecked = context
as
ModelVM;
<TelerikCheckBox Value=
"isChecked.isChecked"
/>
}
</Template>
</GridColumn>
</GridColumns>
</TelerikGrid>
Hello,
I'm having the List of <Model> which is populated by call to database:
private List<OrdersModel> orders;
protected override async Task OnInitializedAsync()
{
orders = await _db.GetOrders();
}
How do I fill Grid with orders info?
This is how my Model looks like:
public class OrdersModel
{
public string OrdNo { get; set; }
public string OrdStatus { get; set; }
}
Please advise.
How can I fill DateTimePicker with specific dates and times (say based on List<T>)?
I have a Grid with a popup edit window and an Add Item command in the toolbar. When a new item is added, it calls a method that calls several other async tasks which can take 3-4 seconds to complete. Is there a way to modify the Update button on the edit grid popup with some kind of working/processing indicator?
As an example of what I've attempted (using Ed Charbeneau's Spinkit):
<GridCommandButton Command="Save" Icon="add" ShowInEdit="true" OnClick="@SendNewUserEmail">
<SpinLoader IsLoading="@IsProcessingNewUser">
<LoadingTemplate>
<Circle /> Working on it...
</LoadingTemplate>
<ContentTemplate>
Add User
</ContentTemplate>
</SpinLoader>
</GridCommandButton>
But this button doesn't appear in the grid popup at all.
Hi
Ref: https://feedback.telerik.com/blazor/1432800-set-grouping-from-code
Set static group from code
Is it possibile to forbid the user to remove the grouping configured by code ??
Tnx
I searched and saw there was a thread on not showing the indicator if there were no children, is there a way to hide the indicator in ALL cases?
I am not using the indicator to open/close the nested grids.
What I am doing currently, is I have a checkbox in certain columns if the data in that column is really more than what the column can contain, so I make a nested grid for the additional data if they want to see more information. Because the checkbox is doing the event, the indicator is not needed.
Hi,
My app needs authentication and I use JWT.
Is want to populate a TreeView with some personal image, but the question stay open for all component with ImageUrlField property
How to query an image url that contains the JWT token, ie in the header
Authorization: Bearer <token>
?
Thanks
This is an example of how it was done using Kendo UI - http://dojo.telerik.com/EviNI
Is there a way of doing the same with the Blazor grid?