[codenameone-discussions] capture event while phone is editing .

2019-01-17 Thread shop . service . assistant
If you are experiencing an issue please mention the full platform your issue applies to: IDE: NetBeans/Eclipse/IDEA NetBeans 8.2 Desktop OS Windows 10 Pro Simulator Latest Device PC, Android, IOS Is it possible to capture events in TextArea or TextField while typing, specifically longPressed eve

Re: [codenameone-discussions] POST problems

2019-01-17 Thread Gareth Murfin
thanks, nothing shows up in there, no idea, this code has worked on many apps for years. Can you verify it still works for you steve? On Wednesday, January 16, 2019 at 8:52:15 PM UTC+8, Steve Hannah wrote: > > > Post body is empty in there. Should that show post parameters though ? >> > > Yes it

[codenameone-discussions] Dots when labels are too long

2019-01-17 Thread Gareth Murfin
Does cn1 have the 3 dots thing that appears when a label string is too long? I feel like I remember using it but Im wondering if that was real android. If not it would be a great feature... save a ton of hassle too :) -- You received this message because you are subscribed to the Google Groups

Re: [codenameone-discussions] Re: Error build IOS

2019-01-17 Thread Shai Almog
Hi, I see you used ad-hoc signing which might not match to the provisioning. But that's a shot in the dark guess as these things take a lot of trial and error. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this

[codenameone-discussions] Re: capture event while phone is editing .

2019-01-17 Thread Shai Almog
No. These events are handled by the text input for things like copy & paste. Since we handoff control to the native text field we don't get some of these events on our side. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubsc

Re: [codenameone-discussions] POST problems

2019-01-17 Thread Shai Almog
The order won't change anything because the call is useless. Had you invoked setPost(false) you would have gotten an exception but because the request is already a post request it doesn't do anything. Post body arrives just fine for my requests. -- You received this message because you are sub

[codenameone-discussions] Re: Dots when labels are too long

2019-01-17 Thread Shai Almog
Sure setEndsWith3Points. -- 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-discussions+unsubscr...@googlegroups.com. Visit this group at htt

[codenameone-discussions] Re: How to make a post json request to a rest api

2019-01-17 Thread Shai Almog
I would suggest using the newer REST API https://www.codenameone.com/blog/rest-api-error-handling.html E.g.: Rest. post("https://language.googleapis.com/v1/documents:analyzeSyntax?apiKey"; ). jsonContent(). body("place the JSON string of the request here"). fetchAsJsonMap(e -> {