Is it possible to change a textbox in the popup window for editing a row in a TelerikGrid to a TelerikDropDown ?
I'm tinkering with GridPopupEditSettings and haven't been able to figure out if it's possible/how to do it.
I developed the Telerik Blazor Scheduler component.
Like this:
I want to highlight the current date like the team's calendar.
Like this:
This is a coding part:
<TelerikScheduler
Data="@Appointments"
Date="@StartDate"
OnItemClick="@OnItemClick"
@bind-View="@CurrView"
DateChanged="@DateChangedHandler"
Height="480px">
<SchedulerResources>
<SchedulerResource Field="ManagerName" Data="@Managers" />
</SchedulerResources>
<SchedulerViews>
<SchedulerWeekView
StartTime="@DayStart"
EndTime="@DayEnd"
SlotDuration="30"
SlotDivisions="5"/>
</SchedulerViews>
</TelerikScheduler>
It can be done or not? Please help me
Hi,
I'm looking into rendering a TelerikGrid component (including hierarchy) to a pdf using the Telerik Pdf processing library.
I'm a bit lost on what is and is not supported in the pdf-/word processing suite in Blazor (Wasm).
Is there any way to render a Blazor component and export it to pdf?
Hi,
I have upgrade telerik version to 3.6.1 to use TelerikPdfViewer, I just copy paste code you provided. A working toolbar exist but it not rendering pdf to view. What can be reason?
I have update all.css and telerik-blazor.js.
Hi,
We build a custom CSS file that includes the SCSS for the components we use as described in https://docs.telerik.com/blazor-ui/styling-and-themes/custom-theme#using-the-build-process-of-the-application
However, I have noticed that there are classes that only exist in the @progress/kendo-theme-default/dist/all.scss file.
One example is .k-overflow-auto which is used by the PDF viewer component without which the component does not display correctly and the paging functionality does not work.
This suggests it is not currently possible to use the customisation method to reduce the size of the delivered CSS as not all the classes will be available. Or have I missed something?
Cheers,
R.
Is it possible to customize upload dialog in file manager?
Add dropdown and datepicker into upload dialog in filemanager.
I've made a simple blazor repl demo here: https://blazorrepl.telerik.com/mmlYatun39gTFEgO21
As you can see, TotalCount is 10, and the current PageSize is also 10. When these values match, the value in the "items per page" dropdown isn't present. Select any other value, and it will be present (for 5, 20, 40). Come back to 10, and again, the value disappears.
Image examples, with items per page set to 10, then 5:
Hello,
I started using the PdfViewer component and I like it very much, very easy to use.
But I have a small issue, the customer doesn't want a download button with an icon but with the text 'Download'.
So I added a custom toolbar tool with a normal button, like the sample in the docs, but how do I then trigger de download action of the PdfViewer?
I can of course add my own download logic, but in the component it's already there...
Kind regards,
Kees Alderliesten
Here is the code for my grid:
<TelerikGrid Data="@RunningCodes"
AutoGenerateColumns="false"
FilterMode="@GridFilterMode.FilterRow"
Pageable="true"
PageSize="20">
<GridColumns>
<GridColumn Field="@nameof(RunningCode.CodeType)" />
<GridColumn Field="@nameof(RunningCode.Host)" />
<GridColumn Field="@nameof(RunningCode.Name)" />
<GridColumn Field="@nameof(RunningCode.Description)" />
<GridColumn Field="@nameof(RunningCode.LastRunResults)" />
<GridColumn Field="@nameof(RunningCode.NextRun)" />
<GridColumn Field="@nameof(RunningCode.IsBanned)" />
<GridColumn Field="@nameof(RunningCode.StartupType)" />
<GridColumn Field="@nameof(RunningCode.Status)" />
</GridColumns>
</TelerikGrid>
Any idea why my pager looks like this at the bottom of the grid?
I am using a async task which reloads the grid every few seconds. After fetching the rows, the whole page is refreshed via InvokeAsync(StateHasChanged).
The issue I have is if the user is trying to set a column filter in the grid, the refresh resets any changes the user has made (but not applied). Is there a way to either not refresh the filter control or be notified when the filter is opened and closed (so the refresh task can not refresh the page)?
Attached short video describing the issue. The updated label at top left shows when page is refreshed. When typing the filter value after refresh, inputting the next digit seems to wipe out previous digits. Changing filter operation also seems to lose the change.