Hi,
I don't know how my data are organised, I can't create a class about it (this is CSV file import, any kind of file)
I want to display this is a grid.
<TelerikGrid Data="@datable.rows" <GridColumns> @{ for (int i = 0; i < datable.columns.Count; i++) { <GridColumn Field="@(i.ToString())"> <Template> @(((QFLib.DataRow)context)[i].ToString()) // How to evaluate i here ? </Template> </GridColumn> } } </GridColumns> </TelerikGrid>It doens't work because the template during code generation doesn't evaluate i
Is it possible ?
Another way of doing this ?
Sincerely,
Remi
Hello!
Is there a way to resize the modal window from Editable="EditGridMode.Popup" on a DataGrid?
I did find https://github.com/telerik/blazor-ui/tree/master/grid/custom-popup-form via another forum thread, but that seems like wild overkill just to change the size of the modal by like 50px.
Thanks,
Andrew
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)