LocaleInfo.getAvailableLocaleNames() regression in GWT 2.4 and 2.5.

2013-05-01 Thread Arkady
that adhere to the configuration? Thanks. Best regards, Arkady. . -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@goo

Nice to see you again.

2011-04-04 Thread Arkady Kamenetsky
f you have any questions about it. -- ------ *Arkady Kamenetsky* *www.rightcondition.com* <http://www.rightcondition.com/> "What is your condition"? -- -- You received this message because you are subscribed to the Googl

Smart GWT - renaming node

2010-05-24 Thread arkady
Folks, Does anyone have an example of how I could rename the node of a TreeGrid. I am performing the operation from a clickhandler and I have access to the TreeGrid. I am able to delete the node without a problem, but I cannot seem to get a rename working. I tried updating the Data element and

Re: Adding source code to GWT project from other projects

2010-05-15 Thread Arkady Kamenetsky
I want to add that the projects build together and the code shared between all modules. I have no problem importing the actual objects within the GWT server side, but the client does not see it. On Sat, May 15, 2010 at 3:36 PM, arkady wrote: > Hello, > > I have multiple projects tha

Adding source code to GWT project from other projects

2010-05-15 Thread arkady
Hello, I have multiple projects that I build together via maven. One of them is a web application with GWT, I am trying to import some of the source code from other projects to use on the client side. I have made everything serializable, but upon compilation GWT cannot find source. [INFO] Compi

Running GWT with -noserver and weblogic. Can anyone help?

2010-05-12 Thread arkady
Hey folks, I have a weblogic server running with my application, something I deploy and launch outside of eclipse. It is running on localhost:7001/myApp Inside Eclipse, I would like to launch the GWT component such that I can debug the client side code AND see immediate changes without the need t

Problem with CSS parsing when it contains constants or css class names with "_" in the middle of the name.

2010-01-19 Thread Arkady
.java:346) If I remove the "_" from the constant name the compilation succeeds. The same problem I had before when I tried to define a css class name with "_" in the middle of the name. Am I doing something illegal or is it a GWT compiler bug? Any help will be greatly appreciate

Re: Problem with ClientBundle image resources in development mode.

2010-01-08 Thread Arkady
Right, but I specifically turned the data URIs off (with ClientBundle.enableInlining = false) because I was getting issues with sprites in IE. So in order to debug them in Firefox in development mode I need it to work. On Jan 7, 1:29 am, Thomas Broyer wrote: > On Jan 7, 3:35 am, Arkady wr

Problem with ClientBundle image resources in development mode.

2010-01-06 Thread Arkady
his a known issue with development mode in GWT 2.0? Best regards, Arkady. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group

Re: Problem with GWT RPC when parameter contains collection.

2009-08-21 Thread Arkady
t know yet but maybe my sample helps you to compare > your code as well.. > > http://www.tolgaozdemir.net/2009/08/19/gwt-101-lessons-2-gwt-17-with-... > > On Aug 20, 11:37 pm, Arkady wrote: > > > > > I am having problem with GWT RPC in the following scenario. > >

Problem with GWT RPC when parameter contains collection.

2009-08-20 Thread Arkady
I am having problem with GWT RPC in the following scenario. I have a service: public interface MyService extends RemoteService { public MyResult getMyResult(MyParam param); } with corresponding Async version and Impl version. MyParam class contains ArrayList: public class MyParam imple