Pending Review
Last Updated: 20 Feb 2025 18:12 by Evan
Created by: Evan
Comments: 0
Category: UI for Blazor
Type: Bug Report
0

Acro field values don't show in the PDF VIewer, although they display in the print preview dialog.

The problem still exists in version 2025.1.205 (8.0.0), exhibits exactly the same problem as originally reported and the originally supplied files should evidence the continued problem

This is a regression in version 8.0.0. Version 6.2.0 displays the acro field values as expected.

Pending Review
Last Updated: 20 Feb 2025 16:24 by Mike

In the scheduler for Asp.net Ajax, the month view would put a k-other-month class on the cells from other months outside of the current one and those cells would have a different style (grayed day numbers or background, etc.).  In the Blazor scheduler component it doesn't look like that class is being put on those cells anymore. The Telerik SCSS themes still allow for that class, so is there a way to add them or is there a workaround so that those cells can be re-styled similar to the way the Ajax Scheduler functions?

Thanks,

Mike

Duplicated
Last Updated: 20 Feb 2025 15:55 by ADMIN
Created by: Evan
Comments: 1
Category: UI for Blazor
Type: Bug Report
1
Acro fields do not display

Acro field values don't show in the PDF VIewer, although they display in the print preview dialog.

This is a regression in version 7.0.0. Version 6.2.0 displays the acro field values as expected.

Completed
Last Updated: 20 Feb 2025 15:12 by Evan
Release 8.0.0
Created by: Evan
Comments: 1
Category: PDFViewer
Type: Bug Report
1

Acro field values don't show in the PDF VIewer, although they display in the print preview dialog.

This is a regression in version 7.0.0. Version 6.2.0 displays the acro field values as expected.

Won't Fix
Last Updated: 20 Feb 2025 12:51 by ADMIN
The dropdown is not showing all items and the page behind the window is scrolling instead.
Planned
Last Updated: 20 Feb 2025 11:50 by ADMIN
Scheduled for 2025 Q2 (May)
Created by: Frank
Comments: 0
Category: Window
Type: Bug Report
3

The Window can display as centered, but after the user moves or resizes it, the app is not able to center the Window programmatically.

The only possible workaround is to toggle the Window's Visible parameter:

https://blazorrepl.telerik.com/weaewmFe32oT4rnQ42

<TelerikWindow @bind-Top="@Top" @bind-Left="@Left" Centered="@Centered" @bind-Visible="@Visible">
    <WindowTitle>
        Title
    </WindowTitle>
    <WindowContent>
        Drag or resize the Window and center it afterwards...
    </WindowContent>
</TelerikWindow>

<TelerikButton OnClick="@( () => Visible = !Visible )">Toggle Window</TelerikButton>
<TelerikButton OnClick="@OnCenterClick">Center</TelerikButton>

@code {
    string Top { get; set; }
    string Left { get; set; }
    bool Centered = false;
    bool Visible { get; set; } = true;

    async Task OnCenterClick()
    {
        Visible = false;
        await Task.Delay(1);

        Top = Left = string.Empty;
        Visible = true;
    }
}

Pending Review
Last Updated: 19 Feb 2025 18:47 by Mike

When double-clicking a cell in the All Day Row of the scheduler, one would expect that the IsAllDay field would be set to true in the SchedulerEditEventArgs similar to the way the start and end dates represent the date and time of the cell that was double-clicked.  Unfortunately, the IsAllDay field is always false.

The following Repl taken from the demo reflects this: https://blazorrepl.telerik.com/mzYQvZvC394NLH0H06

Is there a way to determine if the double-clicked cell is in the All Day Row?

Thanks,

Mike

Need More Info
Last Updated: 19 Feb 2025 15:11 by ADMIN
Created by: Jon
Comments: 0
Category: Grid
Type: Feature Request
1

Please add support for automatic Grid table layout, which will allow column widths to be set by the browser, based on the cell content.

===

TELERIK EDIT:

This is a huge task with many implications. We require large-enough customer demand before we start exploring or implementing it.

Everyone who is interested, please drop a few lines here and share:

  • What problems are you trying to solve?
  • What benefits you want to achieve?
  • Why the current Grid capabilities and behavior don't work for you?

Here are some thoughts on the matter:

HTML tables have two layout modes: auto and fixed. In auto layout, the table column widths depend on the content. In fixed layout, all column widths are equal or obey the set styles, no matter the content.

The Blazor Grid renders separate tables for its header cells and data cells. This allows the data area to scroll, while the header area remains visible at all times. The only reliable way to ensure column alignment between the two tables is to apply a fixed table-layout style. This results in the behavior, which we have described in the documentation.

The only way to have auto table layout in the Blazor Grid is to render the component as a single <table>, which is currently not available.

Possible workarounds include: 

  • Set optimal fixed widths for all columns, or at least the ones with predictable content.
  • Autofit the columns with non-predictable content, or simply set a bit larger widths to make sure the content doesn't clip or wrap.

Here is are a few links on the matter:

Declined
Last Updated: 19 Feb 2025 14:54 by ADMIN
Created by: hizam
Comments: 1
Category: UI for Blazor
Type: Feature Request
0

     Dear all,

 

     Please, Can you send the source code for this template with Arabic language     https://demos.telerik.com/blazor-coffee/

    Please add Arabic translate from right to left automatic when select Arabic language

 

Unplanned
Last Updated: 19 Feb 2025 14:05 by Tom

With the new dock manager, I have a tab group that i am programmatically adding a new tab. When I add a new tab i would like it to be visible. I can see there is SelectedPaneId but I see in the documentation this is on init only. Please allow selecting a tab pane programmatically.

===

TELERIK EDIT:

A possible workaround is to simulate user behavior and click the desired tab pane with JavaScript:

<TelerikButton OnClick="@OnButtonClick">Add Tab Pane</TelerikButton>

<TelerikDockManager
                    Width="50vw"
                    Height="50vh">
    <DockManagerPanes>

        <DockManagerTabGroupPane>
            <Panes>
                @for (int i = 1; i <= TabPaneCount; i++)
                {
                    int paneIndex = i;
                    <DockManagerContentPane @key="@paneIndex" HeaderText="@( $"Tab {paneIndex}" )" Class="dynamic-tab-pane">
                        <Content>
                            Tab Content @paneIndex
                        </Content>
                    </DockManagerContentPane>
                }
            </Panes>
        </DockManagerTabGroupPane>
    </DockManagerPanes>

</TelerikDockManager>

<script suppress-error="BL9992">
    function selectLastTabPane () {
        let tabPanes = document.querySelectorAll(".k-tabstrip-item .dynamic-tab-pane");
        if (tabPanes.length > 0) {
            let lastTabPane = tabPanes[tabPanes.length - 1];
            lastTabPane.click();
        }
    }
</script>


@code {
    private int TabPaneCount { get; set; } = 2;

    private bool ShouldSelectTabPane { get; set; }

    private void OnButtonClick()
    {
        ++TabPaneCount;

        ShouldSelectTabPane = true;
    }

    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        if (ShouldSelectTabPane)
        {
            ShouldSelectTabPane = false;

            await Task.Delay(1); // wait for HTML to render

            await js.InvokeVoidAsync("selectLastTabPane");
        }

        await base.OnAfterRenderAsync(firstRender);
    }
}

Need More Info
Last Updated: 19 Feb 2025 13:26 by ADMIN
Created by: Michael
Comments: 0
Category: UI for Blazor
Type: Feature Request
1

Telerik UI for Blazor requires unsafe-inline styles in order to render style attributes from the .NET runtime.

Please add support for strict CSS CSP without the need for unsafe inline styles.

===

TELERIK EDIT:

Due to the complexity and required effort to add strict CSS CSP support:

  • The feature request must gather enough votes.
  • We may implement it gradually. That's why, everyone who is interested, please specify the exact components and features that you need to be compliant sooner.
Unplanned
Last Updated: 19 Feb 2025 12:41 by Sihol
When the Spreadsheet generates the byte array with ExportToExcelAsync(), it doesn't include the information about the active cell. For example, this restricts the ability to set the number of frozen columns and rows, based on the active cell. One must provide explicit UI for this as a custom tool.
Unplanned
Last Updated: 19 Feb 2025 11:59 by Werdna
Created by: Werdna
Comments: 0
Category: PDFViewer
Type: Feature Request
1
I need access to the file the user has open. Also, if the file is changed, like with annotations, I want to access those changes too.
Unplanned
Last Updated: 19 Feb 2025 06:47 by Miroslav
Created by: Miroslav
Comments: 0
Category: PDFViewer
Type: Bug Report
2

Trying to upload a large file from a mobile device breaks the component.
Step to reproduce:

  1. Open this REPL example on a mobile device
  2. Click the "Load Data" button.

The issue can be reproduced only in version 8.0.0

Unplanned
Last Updated: 18 Feb 2025 14:15 by Sihol
Created by: Sihol
Comments: 0
Category: Spreadsheet
Type: Bug Report
1
I want to set a smaller value for the ColumnsCount property but it does not look like it allows a value less than 50 which is the default one.
Unplanned
Last Updated: 18 Feb 2025 14:10 by Sihol
I am truing to change the value of the ColumnsCount after the component has initialized but it's not changing. Calling Rebind also does not help to change the value.
Unplanned
Last Updated: 18 Feb 2025 13:08 by Lance
Currently, the OnUndock is fired if you just click an item. However, the drag operation hasn't started yet.
Planned
Last Updated: 18 Feb 2025 11:40 by ADMIN
Scheduled for 2025 Q2 (May)

The DateRangePicker's Calendar popup will navigate to the Min value when the user deletes the currently selected EndValue.

https://blazorrepl.telerik.com/GzEPQoPw45otLVRU34

Select Start and End value.

Delete the End value.

The Calendar will show the Min value year, which is 1975 in this case. If Min is not set, the component will show 1900.

Unplanned
Last Updated: 18 Feb 2025 10:42 by Sihol
Created by: Sihol
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
I want to have an option to disable the formulas in the Spreadsheet.
Declined
Last Updated: 18 Feb 2025 08:59 by ADMIN
Created by: Andreas
Comments: 1
Category: Editor
Type: Bug Report
1

When copying from the Editor and pasting in Word (keep source formatting), basic stuff like font and font size are not kept.

The text will always become Times New Roman, and the font sizes are not the same, for example 14pt becomes 13.5pt...

Using IFrame-mode and injecting css to set default fonts since that is not supported in a proper way...

From what I can see you need to intercept the copy-event and fix the html like your competitors do (for example syncfusion)...

 

1 2 3 4 5 6