
Hi everybody,
the synchronization of buttons and the circle is not working correctly. Sometimes when I use one of the buttons the circle jumps back to zero or it is not moving. It seems that the buttons are using different values as the circle. You can also see this effect when using the online sample for label template (https://demos.telerik.com/blazor-ui/slider/label-template).
Curious: the online sample for overview (https://demos.telerik.com/blazor-ui/slider/overview) seems working correctly.
BTW: the same effect exists for RangeSlider component.
Best Regards, Stefan
I have a template for one of my columns that is bound to a bool property of the context object.
class Model { public string Name { get; set; } public string Guid { get; set; } public bool IsSelected { get; set; }}
And grid columns defined like so:
<GridColumns> <GridColumn Field="@(nameof(Model.IsSelected))" Width="220px" Title="Name" Resizable="false"> <Template Context="context"> @{ if (context is Model model) { <TelerikCheckBox Id="cbIsSelected" @bind-Value="@model.IsSelected"/> <label for="cbIsSelected" class="ml-2">@model.Name</label> } } </Template> </GridColumn> <GridColumn Field="@(nameof(Model.Guid))" Width="330px"/></GridColumns>
The GridSearchBox works beautifully on the Guid field, but not on the Name field. I'd like to be able to search on both. I'd appreciate guidance on how to do this.
Is it possible to use an editor in a window? The following seems to hang the application when opening the window:
@page "/test"<div class="container-fluid"> <TelerikWindow Left="3rem" Top="2rem" Visible="@Visible"> <WindowTitle>Test</WindowTitle> <WindowActions><WindowAction Name="Close" @onclick="@(() => Visible = false)" /></WindowActions> <WindowContent> <TelerikEditor @bind-Value="Body" Width="650px" Height="400px"></TelerikEditor> </WindowContent> </TelerikWindow> <TelerikButton ButtonType="@ButtonType.Button" OnClick="@(() => Visible = true)">Editor</TelerikButton> </div>@code{ private string Body { get; set; } private bool Visible { get; set; }}Is it possible to close the edit view (edit template?) manually?
I have the following:
<GridToolBar>
<AuthorizeView>
<GridCommandButton Command="Add" Icon="add">Add Product</GridCommandButton>
</AuthorizeView>
</GridToolBar>
It works, except a visible, empty tool bar is still rendered. Is there an elegant way to get it to not render when there are no buttons in it.
My first attempt to wrap the entire GridToolBar in an AuthorizeView component doesn't work.
Regards,
Gerhard
Hi,
I use a window to show a popup in a webassembly blazor project. In this window, I have a grid with +/- 2500 items and some text/date input fields. When I type some text in the textboxes or try to change the date in a datetimepicker with the keyboard, there is a lot of delay. It takes a long time before the typed text is showing in the textbox.
When I do the same with +/- 10 items in the grid, it works fine. The filtering in the grid works also fine without any noticable delays.
I try to use this project offline, so I need to keep all the grid items in local storage. It's not possible to do some server side filtering.
Is there a way to improve this behaviour?
Thanks
Hi, I have a problem with menu and sub-menu. The problem does not always occur, but quite often. SignalR latency is low (local server).
See attachment - after I move the mouse pointer outside the menu area, the items are still expanded.
Best regards
Konrad
Hello Teams
When I clicking the GridCommandButton the text should be change to remove and I have attached the Image with explanation.
<TelerikGrid Data=@users
Groupable="false" Sortable="true"
FilterMode="GridFilterMode.FilterMenu" Resizable="true"
Reorderable="true" PageSize=@GridConstants.PageSize Pageable=@GridConstants.Pageable Class="ecm-grid">
<GridColumns>
<GridColumn Field="@nameof(ManageUsrAndGrp.User.Name)" Title="User Name" />
<GridColumn Field="@nameof(ManageUsrAndGrp.User.FullName)" Title="Full Name"></GridColumn>
<GridCommandColumn Resizable="false">
<GridCommandButton Command="Edit" OnClick="@AddUser">Add</GridCommandButton>
</GridCommandColumn>
</GridColumns>
</TelerikGrid>
Thanks,
Vishnu Vardhanan