Hi,
I was wondering if it is possible to use the ENTER key for applying the filter in a grid. We are using the FilterMenu option in our grids.
See the attached screenshot for clarity.
Is there a way to programmatically select an active row in the Grid? And if the active row is not visible allow scrolling the active row into view?
Thanks.
I have a list of items that I can display in a TreeView as flat data source. Each of these items has a list of other items, more like a hierarchical data source. Is it possible to have a TreeView with mixed flat and hierarchical data in it? I've tried adding another TreeViewBinding, but that didn't work.
public class TreeItem{ public int Id { get; set; } public string Text { get; set; } public int? Parent { get; set; } public bool HasChildren { get; set; } public bool IsExpanded { get; set; } public List<SubItem> SubItems { get; set; }}
Hi,
after enable grid to single selection I want to highlight the selected row. Should I use the OnRowRender to do this, there is no built in feature to do this?
Thank you very much
Andrea
Hello!
Please help: i have custom column's grid header that contains CheckBox and column's title
The column is sortable.
A checkbox calls a specific method, but clicking on it also triggers a sort.
How to prevent sorting when clicking a specific component in a column header?
<GridColumn Filed="nameof(CrmViewElements)"> <HeaderTemplate> <div class="row"> <div class="col d-flex align-items-center"> <div style="padding-right: 1rem; cursor: pointer" data-toggle="tooltip" data-placement="bottom" title="Show all elements"> <TelerikCheckBox @bind-Value="@showAllComponents" /> </div> <span>Elements</span> </div> </div> </HeaderTemplate></GridColumn>I am testing the new menu component but found some issues:
1. when you move the mouse over the menu options sometimes more than one menu remains openned. (attached screenshot)
2. when you click a submenu option the submenu is not closed/hidden.
3. add option to show/open submenus only when clicking in the menu option, not when passing mouse over it.
Hi
How do you change the border ?
I've tried.. doesn't seem to work.
How can I make outset? and change the border color.. do it 'pops'?
thx in advance
.k-animation-container {
border-radius: 2px 2px 2px 2px;
border-color: blue;
border-width: 2px;
position: absolute;
overflow: hidden;
z-index: 100
}
Anyone got a list of a few case studies of web apps that have been deployed "into the wild" - especially if using the Kendo library?
So far, I have built just one but it is an internal (behind the firewall) app and it is working great.
Blazor (attachment 1.jpg)
jQuery (attachment 2.jpg)
i would appreciate for workaround
Hi,
In my Telerik Blazor grid, I'm looking to limit the amount of characters a user can input in a particular column.
So in my column below I want the user only to be able to enter max 50 characters when they are adding or updating a row.
<GridColumn Field="Description">
<Template>
@((context as Model1).Desc.ToString())
</Template>
</GridColumn>
Thanks for any pointers!