Go to https://demos.telerik.com/blazor-ui/tilelayout/overview
using Safari browser
Change any tile's height which contains chart. Chart has still fixed height.
Chrome and Edge browsers works normal.
Hello!
Is it normal that the grid's OnStateChanged event gets called twice when filtering?
Other actions, such as sorting, resizing, and reordering, call OnStateChanged once.
I have an event handler that stores the state of the grid in local storage, and it's rather annoying that it gets called twice for no reason.
Hi!
I need to have a proper color palette in the editor as a toolbar that should appear if Tools="@EditorToolSets.All" is applied. I need to have an editor with descent background, highlight, and foreground/font color.
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
}