Heres what I get on the page:
See it has the column info from the DB and it should be showing 4 rows of data.
When I debug I see it returning 4 rows!
I have it hooked up as such:
<TelerikGrid @ref="@GridMarginInfoResults"
Data="@GDMarginInfoResults"
AutoGenerateColumns="true"
Pageable="true"
Sortable="true"
Class="custom-row-colors">
</TelerikGrid>
private List<MarginInfo> GDMarginInfoResults { get; set; }
public TelerikGrid<MarginInfo> GridMarginInfoResults { get; set; }
What am I missing?
Hi,
I'm struggling to find a simple way to set the selected row colour. I'm using the bootstrap theme.
I want to change it to the indigo/tertiary colour in the bootstrap theme but I'm getting nowhere. It's still a light blue.
Can you assist please.
Many thanks,
Rob
Hi
Is there a way to delay the opening of the TeleriklMenu ( use case : the menu is used in a table and each time the mouse goes over, the popup appears. I want to prevent this by putting a delay before showing the Popup
A workaround could be to show the popup only at mouse click
Thanks
I am trying to have a TelerikWindow with its content divided in 3 rows: in the first row a button (10% of the TelerikWindow Heigth), in the second row a scrollable TelerikGrid (80%) and in the third row another button (10%).
To obtain this result I've created a TelerikWindow with a TelerikGridLayout in it, the TelerikGridLayout has 3 rows (10%, 80%, 10%) for button - grid - button.
In my test the grid exceeds the height of the telerikwindow so a vertical scrollbar appears in the TelerikWindow, instead I would like all content in the TelerikWindow (without the TelerikWindow vertical scrollbar, only with the TelerikGrid scrollbar). My test is in repl at https://blazorrepl.telerik.com/cdEbQQGu3019EWUB00.
May you kindly help me?
Thank you.
I'm working on a custom export of the grid data (mostly due to date formats.)
I can get the filtered data using the code from here:
https://www.telerik.com/forums/export-telerik-ui-blazor-data-to-excel-pdf#gLpHjDCLDUmPjega_RAwPw
This works great for using the filter menu items. Adding a couple new lines of code, I can easily get the current sort as well.
Is there anything exposed to let me get anything typed into the "Search" box which does the Contains on all the fields? It doesn't exist in the current FilterDescriptors and I didn't see another thing that would let me get that values and further filter the existing data with what is in that box.
Thanks
<TelerikButton Class="mr-1" ButtonType="@ButtonType.Button" ImageUrl=@GetImageUrl(@name) OnClick="@(()=>AttachmentOnClickHandler(name))">@name</TelerikButton>
Since updating to 4.0.0 I am getting error when creating a new ExcelExportableColumn now.
var isBugColumn = new Telerik.Blazor.Common.Export.Excel.ExcelExportableColumn() { Field = "IsBug", Title = "Is Bug" };
Getting error that "ExcelExportableColumn is inaccessible due to its protection level"
Is it possible to have mutiple resources of the same type on the same appointment? For example, in our system we could have a Patient Appointment with multiple physical therapists. In our system the resource ids stored in an appointment is a list not a single value as I have seen your examples.
Thanks!