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
Hi
I'm trying to apply the following Class , like this , but doesn't work.. gets override by the Telerik 'k' classes.
How can I apply custom Width / Height? thx
.TextBoxLarge {
width: 400px;
height: 50px;
}
<TelerikTextBox Class="TextBoxLarge" @bind-Value="@Notes"></TelerikTextBox>
when I am selecting the checkbox value and the another checkbox also selected. Please see attached file
<TelerikListView Data="@editModel.Groups" Height="200px">
<Template Context="dlcontext">
<div class="row" style="margin-left:0px; margin-right:0px;">
<div class="col-12 mt-sm" style="margin-top: 3px; margin-bottom: 3px;">
<label for="@dlcontext.Name">
<TelerikCheckBox @bind-Value="@editModel.IsSelected" Id="@dlcontext.Name" Enabled="true" />
@dlcontext.Name
</label>
</div>
</div>
</Template>
</TelerikListView>
Thanks,
Vishnu Vardhanan
As the title states, when a user presses enter in a textbox, how could I trigger the key down event for tab?
Will this be a jsinvoke?