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?
Hi
How do I style the CheckBox to appear like the standard Check Box? I want it to be large, width= 50
<td><InputCheckbox id="chkpopup" class="form-control" style="width: 50px;" @bind-Value="Popup" /> </td>
<TelerikCheckBox Id="chkpopup"
@bind-Value="@Popup"
OnChange="@PopUpCheckChanged">
</TelerikCheckBox>
See attachment.. I want the small Telerik CheckBox to appear large and blue.
thx
Hi,
is there a possibility to zoom in to a part of a chart?
Best Regards
I have 2 different concepts which are displayed together with a shared category axis.
Currently there is a 1 to 1 mapping between each.
Is it possible to align each in every category so that they are vertically aligned?
Currently they seem to display side by side.
This might be because the bottom column can be vary large and in the worst case go all the way to the top.
In addition can the bottom column be made to be larger and a different z-index then the top chart?
For instance in the image the bottom column would grow from top to bottom and be visually larger than the top column.
Therefore any overlap would be visually easy to distinguish.