When using an example like this
https://docs.telerik.com/blazor-ui/components/menu/templates
How does one set the icon on each item?
I want to remove the underline on hovering over a menu item. The colors show, but the underline is still there.
.k-link:hover {
color: forestgreen;
background-color: khaki;
text-decoration: none;
}
Hello,
As you can see with the attached screenshot, the filter icon is over the header text in this case.
Hello,
I have a display that contains a tab control with two tabs and each tab containing a grid.
The problem is that, when I switch tab, the sorting and filtering of the grid is lost.
GridFilterMode.FilterMenu allows to open popup with 2 conditions per column joined with logical conjunction: "and" "or".
Is it possible to have more conditions per column? For example:
Salary > 20
and
Salary < 100
and
not (Salary = 50)
Hello,
I need to migration some legacy stuff and some weird Object-constellation is giving me some problems with the binding in the Blazor Telerik-Grid.
Maybe some-one can give me some advise.
Example Code of legacy data structure:
class
MainObject() {
string
Id {
get
;
set
;}
SubObject[] SubObject {
get
;
set
;}
}
SubObject {
string
Key {
get
;
set
;}
string
Value {
get
;
set
;
}
Details: the SubObject contains some-kind of descriptive Information that is customized for every system.
Goal:
protected
IList<MainObject> MainObjectList{
get
;
set
; }
<
TelerikGrid
Data=@MainObjectList>
<
GridColumn
Field
=
"Id"
Title
=
"Id"
></
GridColumn
>
<
GridColumn
Field
=
"SubObject.First().Value"
Title
=
"SubObject.First().Key"
></
GridColumn
>
What I try to achieve is to show some of the normal properties of the MainObject and some of the Descriptive-Informations inside the SubObjects in the Grid.
I did not even managed to show any of the Informations of the SubObject, is this even possible?
Hello Team;
There is an upcoming feature on the roadmap called "Blazor Dashboard Template".
For our Admin App, we need a Dashboard with layout (Side/top menu, Header, Footer, Body and etc.). Before we spend the time and build this from ground up, we are hoping this component will save us some time.
My question is, is there a similar control/component in other Telerik platforms that we can look at a demo, to get an idea what's coming up? If yes, could you please provide a link?
If not, is it possible to get more detail information on how it will work and what we should expect?
Thanks!