How to disable automatic window resizing of Grid Popup Form Template

1 Answer 258 Views
Grid
Valeriy
Top achievements
Rank 2
Iron
Iron
Valeriy asked on 16 Jun 2023, 03:25 PM | edited on 17 Jun 2023, 08:04 AM

How to disable window resizing (by default, the Window is resizable) of Popup Form Template (GridPopupEditSettings)

(similar to the Resizable="false" property for the TelerikWindow component). 

https://demos.telerik.com/blazor-ui/grid/popup-edit-form-template

 

 

Thank you for the help.


1 Answer, 1 is accepted

Sort by
0
Accepted
Radko
Telerik team
answered on 19 Jun 2023, 07:50 AM

Hi Valeriy,

Currently there is no built-in way to control most individual Window parameters. However, you can disable the resizing through CSS, with a selector similar to the following:

<style>
    .popup-class .k-resize-handle {
        pointer-events: none;
    }
</style>
Note in the above CSS rule, the .popup-class is taken from the linked example - a different setup might require a different rule.

Regards,
Radko
Progress Telerik

As of R2 2023, the default icon type will be SVG instead of Font. See this blogpost for more information.
Valeriy
Top achievements
Rank 2
Iron
Iron
commented on 19 Jun 2023, 10:35 AM

Thanks for the answer.
Tags
Grid
Asked by
Valeriy
Top achievements
Rank 2
Iron
Iron
Answers by
Radko
Telerik team
Share this question
or