Window bugs on minimize/maximize
See original GitHub issueBUG
I’m submitting a …
- bug report
- feature request
Issue description
Current behavior: When i minimize Window, and click again to bring it to front, it loose the template. When i try to put it fullScreen, it place it to the bottom right position Expected behavior: Click on minimized window, bring it normaly with the template. Click on fullScreen, make the window full screen.
Steps to reproduce: See documentation, it’s bugged [window documentaiton] (https://akveo.github.io/nebular/docs/components/window/examples)
Related code:
import { Component } from '@angular/core';
import { NbWindowRef, NbWindowService } from '@nebular/theme';
@Component({
template: `
<form class="form">
<label for="subject">Subject:</label>
<input nbInput id="subject" type="text">
<label class="text-label" for="text">Text:</label>
<textarea nbInput id="text"></textarea>
</form>
`,
})
export class NbFormComponent {
constructor(public windowRef: NbWindowRef) {}
close() {
this.windowRef.close();
}
}
@Component({
template: `<button (click)="openWindow()" nbButton>Open window</button>`,
styleUrls: [ './window.scss' ],
})
export class NbWindowShowcaseComponent {
constructor(private windowService: NbWindowService) {}
openWindow() {
this.windowService.open(NbFormComponent, { title: `Window` });
}
}
Other information:
npm, node, OS, Browser
Node, npm: `v8.11.1` and `5.6.0`
OS: Windows (7/8/10).
Browser: Chrome
Angular, Nebular
angular: 7.0.0
nebular: 2.0.2
Issue Analytics
- State:
- Created 5 years ago
- Comments:15 (1 by maintainers)
Top Results From Across the Web
windows 10 minimize/maximize fullscreen app transition bug is
windows 10 minimize/maximize fullscreen app transition bug is showing off My Pictures folder. This is odd. When I minimize or maximize a full...
Read more >Bug: The application window cannot be resized and stays ...
Press and hold the Windows key + M key to minimize all windows. Press and hold the Shift key + Windows key +...
Read more >5 Ways to Restore the Title Bar, Minimize, Maximize, and ...
To fix it, press Ctrl + Shift + Esc to bring up Task Manager. Below Windows Processes, look for Desktop Window Manager. Select...
Read more >How to Fix Window Not Minimize Maximize in Windows 11
In this Video We are going to see How to Fix Window Not Minimize Maximize in Windows 11 PC or Laptop By the...
Read more >Minimize/Maximize window bug - Microsoft Power BI Community
If you minimize and maximize the Power BI Desktop window, it grows by a little bit each time. Please log as a bug....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@naingaungphyo @AmolSB I did a project for example using nebular starter kit to have running the nebular template and give you an idea how can work nbWindow with a angular service to keep the state saved. It is found in this repo https://github.com/carmeloNET/ngx-admin-nbWindow , just need run npm install and ng serve.
why is this issues closed? the problem is not solved yet