Hi,
When using Telerik Tabs, the content of a tab might refresh every time you navigate to it due to how Blazor's component rendering lifecycle works.
How to stop refreshing the tab content every time I navigate to and from it.
Regards,
Omar
Hello Telerik,
Please see screenshot below.
Thank you.
I'm trying to get the TelerikScheduler to work with Month View and was following your documentation here:
Blazor Scheduler - Month View - Telerik UI for Blazor
When I set ItemsPerSlot as outlined in your example code, I get an error.
I followed your example code, any suggestions?
Hello Telerik,
When I first generator the Grid the menu appears as expected.
When I AutoFit All Columns the NavMenu is mis-alligned.
Thank you
Hello Telerik,
I am attempting to trial the Blazor UI. I am able to get the Telerik Button to work but not the Grid. See Error below. I have included the Repo on GitHub.
Thank you for your help.
GitHub Repo Multiple components use the tag 'TelerikGrid'. Components
Hi,
I was wondering the reason for this change? I can have many LoaderContainers on my screen, and now if a dialog appears, depending on positioning it may or may not be hidden -- and sometimes even just partially hidden!
Example: https://blazorrepl.telerik.com/mSEsmjbL50qFUO1p20
Depending on your window size you may or may not be able to click OK!
Hello,
I'm using a TelerikPopover with an AnchorSelector that references a class name. When the user clicks on an element with that class name the Popover show properly and to the right of that element. However, if I want to programmatically display the Popover using PopoverRef.Show(), the popover will display to the right of the first element with that selector. Is there a way for me to have to Popover display at a specific element?
Thank You,
-Andy
hi.
I just now updated through NuGet to 6.0.2 and started seeing this message on the TelerikUpload component.
How should I resolve this? I am uploading large files
Thanks
Unable to set property 'MaxFileSize'
How do I format field labels in the grid popup edit form? I want to style the labels on a popup edit form. I also would like to associate the labels with fields.
<GridColumn Field="@nameof(ParticipantVM.ParticipantCode)" Width="100px" Filterable=true>
<EditorTemplate>
@{
var item = (ParticipantVM)context;
<div @onkeydown:stopPropagation>
<TelerikTextBox @bind-Value="@item.ParticipantCode" Id="pcode" Placeholder="Enter a Code" DebounceDelay="0" />
</div>
}
</EditorTemplate>
</GridColumn>