Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draggable dialog title bar collapses when draggable is set to true on default theme when there is no title #1432

Open
DanRogers99 opened this issue Mar 21, 2024 · 0 comments

Comments

@DanRogers99
Copy link
Contributor

https://blazor.radzen.com/dialog?theme=default&wcag=false

    public async Task OpenOrder()
    {
        await DialogService.OpenAsync<DialogCardPage>(string.Empty,
               new Dictionary<string, object>() { { "OrderID", orderID } },
               new DialogOptions() { Width = "700px", Height = "512px", Resizable = true, Draggable = true });
    }

image

Behaviour of empty title with draggable set to false

    public async Task OpenOrder()
    {
        await DialogService.OpenAsync<DialogCardPage>(string.Empty,
               new Dictionary<string, object>() { { "OrderID", orderID } },
               new DialogOptions() { Width = "700px", Height = "512px", Resizable = true, Draggable = false });
    }

image

Desktop (please complete the following information):

  • OS: Windows 11
  • Browser Chrome 122
  • Version 4.28.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant