Re: How to remove the "Customize" menu item from toolbars popupmenu ?

2019-05-07 Thread Emilian Bold
Sure, many of these UI things should be configurable. Even the TopComponent popup has hardcoded things but there are ugly workarounds to filter those... --emi mie., 8 mai 2019, 09:13 Tushar Joshi a scris: > As this is a platform issue and platform should be flexible, should we add > some way to

Re: How to remove the "Customize" menu item from toolbars popupmenu ?

2019-05-07 Thread Tushar Joshi
As this is a platform issue and platform should be flexible, should we add some way to hide such menu items for platform applications? with regards Tushar Tushar Joshi, Nagpur: http://www.tusharjoshi.com * MCSD_NET C#, SCJP, RHCE, ZCE, PMP, CSM, SAFe, PRINCE2 * Senior Architect @ Persistent

Re: How to remove the "Customize" menu item from toolbars popupmenu ?

2019-05-07 Thread Emilian Bold
I didn't do this before nor see an easy workaround. Generally I highly recommend serious Platform applications to maintain an Platform fork and recompile it themselves. Then little customizations like this are just a matter of commenting a few lines of code. Of course, this makes updating the Plat

Re: Error compiling a very simple Web Java program

2019-05-07 Thread Emilian Bold
You have the error right there: > error: option -Xbootclasspath/p: not allowed with target 12 >From >https://www.oracle.com/technetwork/java/javase/9-relnote-issues-3704069.html > The boot class path has been mostly removed in this release. The java > -Xbootclasspath and -Xbootclasspath/p opti

How to remove the "Customize" menu item from toolbars popupmenu ?

2019-05-07 Thread Jerome Lelasseux
In my RCP app the Customize action from the toolbars popup menu confuses users and I'd like to remove it. Problem is that the popupmenu is not built from the layer file, it is hardcoded (module Core Windows / ToolbarConfiguration.java / method fillToolbarsMenu() method)... Is there a workaroun

Error compiling a very simple Web Java program

2019-05-07 Thread Quang Nguyen
Hi, Can you let me know what I should do to resolve the error below? This is a very simple Web Java program that passes the user’s input from index.jsp to response.jsp Created dir: /Users/apple/NetBeansProjects/HelloWeb/build/empty Created dir: /Users/apple/NetBeansProjects/HelloWeb/build/genera

Re: Sass comple error

2019-05-07 Thread Peter Haworth
Thanks Pete. I should have mentioned that I am running on a Mac with Netbeans 8.2 and sounds like you are on a Windows box. Hopefully the fix to the config file will still works as long as I can find the equivalent file on my Mac. *Sent with Shift

Re: Sass comple error

2019-05-07 Thread Pete Whelpton
Hi Peter, I was able to configure a workaround. Hopefully this will work for you. :) The problem appears to be that NetBeans SASS support was written for the original Ruby SASS implementation. The root cause is that the ide/css.prep/src/org/netbeans/modules/css/prep/sass/SassExecutable.java cla

RE: git partial commit

2019-05-07 Thread Mike Billman
Thanks! Mike From: Philip Durbin Sent: Monday, May 6, 2019 6:32 PM To: Mike Billman Cc: users@netbeans.apache.org Subject: Re: git partial commit I believe this feature request is being tracked at https://issues.apache.org/jira/browse/NETBEANS-428 On Mon, May 6, 2019 at 5:01 PM Mike Billman

Re: New @ActionState annotation doc ?

2019-05-07 Thread Jerome Lelasseux
Thank you. Le mardi 7 mai 2019 à 09:34:08 UTC+2, Geertjan Wielenga a écrit : There's a reference to it here, though indeed the link to @ActionState indicates that the javadoc is missing: https://bits.netbeans.org/10.0/javadoc/apichanges.html On the other hand, there's no point in goo

Re: New @ActionState annotation doc ?

2019-05-07 Thread Geertjan Wielenga
There's a reference to it here, though indeed the link to @ActionState indicates that the javadoc is missing: https://bits.netbeans.org/10.0/javadoc/apichanges.html On the other hand, there's no point in googling when you know the sources are available directly on GitHub, i.e., here in this case,

New @ActionState annotation doc ?

2019-05-07 Thread Jerome Lelasseux
Hello, I switched from 8.2 to 11 and I get warning messages about my now deprecated BooleanStateActions. The API doc recommends to use the new @ActionState annotation instead, but the ActionState javadoc is missing, and I could not find help on Google... Jerome