[codenameone-discussions] Re: My list is not displayed in tab component.

2016-11-29 Thread ruben_vg via CodenameOne Discussions
Hi, Thanks for you answer. *what's the content of that tab?* All information comes from the "muestraCompra1" method that returns a container component. *The forceRevalidate() approach is probably wrong.* The change for fmLiber.revalide() . No change in outcome *You are calling revalidate() bef

[codenameone-discussions] Re: Access photos permission

2016-11-29 Thread Shai Almog
In the developer guide https://www.codenameone.com/manual/advanced-topics.html We have a section where every Android permission is mapped to the methods/classes that trigger it. You can just search thru that. But make sure to check the build hints first to see that a cn1lib didn't inject a per

[codenameone-discussions] Re: Anyone ever get camera on ios issues?

2016-11-29 Thread Shai Almog
Yes but are you using latest or 3.5? If you are using 3.5 that might be the problem... -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails from it, send an email to codenameone-dis

[codenameone-discussions] Re: iOS alert message

2016-11-29 Thread Shai Almog
This is discussed here: https://www.codenameone.com/blog/partners-demos-custom-gui-components-iphone-old-deprecation.html It's because of the debug build there is a build hint you can use to make it go away but then the debug builds won't work on older 32bit devices you might have around. Noti

[codenameone-discussions] Access photos permission

2016-11-29 Thread Gareth Murfin
Apologies if I have asked this before but I cannot find it - my app is apparently asking some people for permission to access photos and media, what calls in the code will cause this? I thought I had got rid of them all. The people on google play are lunatic asylum escapees, a permission drives

[codenameone-discussions] Re: Anyone ever get camera on ios issues?

2016-11-29 Thread mcellinpaul
Mixed up my last reply - I am a pro user not an enterprise user. Doh! Got them the wrong way round. Guess I could use crash_protet flag as well :) Paul On Tuesday, November 29, 2016 at 5:39:33 AM UTC, Shai Almog wrote: > > Hi, > when you say 3.5 do you mean actual 3.5 or latest? > Those are ver

[codenameone-discussions] Re: Picker.setDate - how to use?

2016-11-29 Thread Gareth Murfin
Apologies, spoke too soon was my own logic bug :-} On Tuesday, November 29, 2016 at 6:35:36 PM UTC+8, Gareth Murfin wrote: > > Picker.setDate doesnt work when you pass in a date if its showing > according to the docs, but then how do you set it? Even in beforeShow it > happens, I thought somethi

[codenameone-discussions] Picker.setDate - how to use?

2016-11-29 Thread Gareth Murfin
Picker.setDate doesnt work when you pass in a date if its showing according to the docs, but then how do you set it? Even in beforeShow it happens, I thought something like this would work but it doesnt; Picker p = new Picker(); p.setDate(theirBirthday); picker.getP