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

2013-05-01 Thread Arkady
? It is a regression from 2.3. Is there any other API available that will return only locales 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

Nice to see you again.

2011-04-04 Thread Arkady Kamenetsky
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 Google Groups Google Web

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

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]

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 arkad...@gmail.com wrote: Hello, I have multiple projects

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

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

2010-01-19 Thread Arkady
appreciated. 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, send email to google-web-toolkit+unsubscr

Re: Problem with ClientBundle image resources in development mode.

2010-01-08 Thread Arkady
, Arkady arka...@gmail.com wrote: Hello, I am having the following problem with ClientBundle. Since I am using external web server (IIS), each time I add new image resources to the ClientBundle, I recompile using ant build target and copy all generated md5.cache.png files to the web

Problem with ClientBundle image resources in development mode.

2010-01-06 Thread Arkady
. Is this 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, send

Re: Problem with GWT RPC when parameter contains collection.

2009-08-21 Thread Arkady
do not 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 arka...@gmail.com wrote: I am having problem with GWT RPC in the following scenario. I have a service

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 ArrayListMyItem: public class