Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-ui-dev] CSS Spy and blocking dialogs

Something like this?

InputDialog d = new InputDialog(new Shell(getShell()), "Title", "Modal", null, null);
d.open();
InputDialog d2 = new InputDialog(getShell(), "Title", "Non Modal", null, null) {
@Override
protected void setShellStyle(int newShellStyle) {
super.setShellStyle(getShellStyle() | SWT.MODELESS);
}
};
d2.open();

On Mon, Jul 31, 2017 at 10:08 AM, Becker, Matthias <ma.becker@xxxxxxx> wrote:

How do I change a dialog to be non-blocking? Is there a quick any easy way that works with all dialogs?

 

From: <platform-ui-dev-bounces@eclipse.org> on behalf of Lars Vogel <lars.vogel@xxxxxxxxxxx>
Reply-To: "Eclipse Platform UI component developers list." <platform-ui-dev@xxxxxxxxxxx>
Date: Monday, 31. July 2017 at 09:38
To: "Eclipse Platform UI component developers list." <platform-ui-dev@xxxxxxxxxxx>
Subject: Re: [platform-ui-dev] CSS Spy and blocking dialogs

 

I once modified temporary the code of a dialog to be non-blocking to analyze it via the CSS spy. AFAIK you can't use the CSS spy for blocking dialogs.

 

Am 31.07.2017 9:00 vorm. schrieb "Becker, Matthias" <ma.becker@xxxxxxx>:

Dear all,

 

the CSS Spy view really does a good job. The only thing that I really miss is that it seems that it is not capable to show details of dialogs that are blocking. Or is this use-case possible and I simply did not find out how that works?

Do you have any idea how I could analyse blocking dialogs?

 

Regards,

Matthias

 

Matthias Becker

Development, PI Tech Core ABAP Server (SE)

SAP SE, Dietmar-Hopp-Allee 16, 69190 Walldorf, Germany

 

T +49 6227 7-60223, M +49 151 53858523, E ma.becker@xxxxxxx

 

 

Pflichtangaben/Mandatory Disclosure Statement:

http://www.sap.com/company/legal/impressum.epx/

 

Diese E-Mail kann Betriebs- oder Geschäftsgeheimnisse oder sonstige vertrauliche Informationen enthalten. Sollten Sie diese E-Mail irrtümlich erhalten haben, ist Ihnen eine Kenntnisnahme des Inhalts, eine Vervielfältigung oder Weitergabe der E-Mail ausdrücklich untersagt. Bitte benachrichtigen Sie uns und vernichten Sie die empfangene E-Mail. Vielen Dank.

 

This e-mail may contain trade secrets or privileged, undisclosed, or otherwise confidential information. If you have received this e-mail in error, you are hereby notified that any review, copying, or distribution of it is strictly prohibited. Please inform us immediately and destroy the original transmittal. Thank you for your cooperation.


_______________________________________________
platform-ui-dev mailing list
platform-ui-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/platform-ui-dev


_______________________________________________
platform-ui-dev mailing list
platform-ui-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/platform-ui-dev


Back to the top