[codenameone-discussions] Re: Whats the current plugin version?

2016-06-13 Thread pejo0100
Ok, thanks for the answear! Is there any place where you can see the number of the current version? I searched for that information before I posted a question here but couldn't find it. It would be good with a page that displays the plugin-versions and the date they were released. On Tuesday,

[codenameone-discussions] Whats the current plugin version?

2016-06-13 Thread pejo0100
What's the current codenameone plugin version? I have version 3.4.0 installed and when i check for plugin updates in netbeans it doesn't show anything newer than that, but i read in the blog at this site that you released a new version of the plugin June 10. f you are experiencing an issue p

[codenameone-discussions] Re: Toolbar and back command issues

2016-05-25 Thread pejo0100
Ok I have fixed the override and now it's working, thanks! Here is the code if anyone else is looking for the same solution. // Added this to the statemachine class @Override protected void setBackCommand(Form f, Command backCommand) {// added this override 20160526 to fix bug in navig

[codenameone-discussions] Re: Toolbar and back command issues

2016-05-24 Thread pejo0100
Ok great! I'll wait for that fix then. I noticed that the android hardware back-button does'n work with the solution that I tried. On Wednesday, May 25, 2016 at 7:01:47 AM UTC+2, Shai Almog wrote: > > There is a regression there which we've fixed already. It will be in this > Friday release.

[codenameone-discussions] Re: Toolbar and back command issues

2016-05-24 Thread pejo0100
Never mind! I found the solution from a similar question at stackowerflow. I had to add the toolbar manually for the form2 like this: @Override protected void beforeForm2(Form f) { f.setToolbar(new Toolbar()); f.setTitle("Form2"); Style s = UIManager.getInstance().getComponentStyle

[codenameone-discussions] Re: Toolbar and back command issues

2016-05-24 Thread pejo0100
Never mind! I found the solution from a similar question at stackowerflow. I had to add the toolbar manually for the form2 like this: @Override protected void beforeForm2(Form f) { f.setToolbar(new Toolbar()); f.setTitle("Form2"); Style s = UIManager.getInstance().getComponentStyle("TitleC

[codenameone-discussions] Toolbar and back command issues

2016-05-24 Thread pejo0100
Hi! Yesterday I suddenly got some issues with the toolbar and back command in my app. I guess it has to do with the changes you recently did to the toolbar api. To describe the problem, just suppose that I have a app (old GUI-builder app) consisting of 2 forms. The problem occurs when I naviga