Re: Stack Overflow in CodeGenerator

2013-10-15 Thread mukarev
No idea here? I continued to increase all possible stack size arguments, but the StackOverflow still occurs 2 out of 3 times. Regards, Markus -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Stack Overflow in CodeGenerator

2013-08-16 Thread mukarev
Hi, since we moved from our client-side serialization to GWT Overlay-Types the Ant-build runs into the following error with one of two builds. [java] at com.google.gwt.thirdparty.javascript.jscomp.CodeGenerator.addList(CodeGenerator.java:896) [java] at

Re: auto refersh list grid

2013-08-05 Thread mukarev
You should have a look at http://www.gwtproject.org/javadoc/latest/com/google/gwt/view/client/AsyncDataProvider.html -- 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

Re: Regarding TimePicker

2013-08-05 Thread mukarev
1. You need to make the TimePicker visible when TextBox gets onFocus or onClick. U can use a PopUpPanel/DielogBox therefore. 2. for using native JavaScript have a look at http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html You might prefer a gwt port from jQuery like

Re: JWebSocket using GWT

2013-01-07 Thread mukarev
I made a wrapper for the jWebSocket client stuff - have a look here - https://github.com/mukarev/gWebSocket Am Samstag, 23. April 2011 03:34:50 UTC+2 schrieb GWT Kid: Folks , I am build a chat Server App in GWT .I came across JWebSocket . (http://jwebsocket.org/) This seems to be useful

Re: Invalid JSNI method reference

2012-08-29 Thread mukarev
if you have a method like public void addDoubles(final double d1, final double d2){ ... } you will do it like @com.ecopy.gwt.client.Utils:: addDoubles(DD)(x,y); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: Metro UI Windows 8 with GWT

2012-08-29 Thread mukarev
. But as Metro is based on simple combinations of rectangles and squares it is predestinated for grids. Best regards, mukarev -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg

GWT Dev Plugin for Google Chrome

2012-08-18 Thread mukarev
prompts something about extensions and plugins can only be installed via Chrome Web Store. So I searched through the store, but wasn't able to find a DevPlugin. Any idea? Thanks in advance. mukarev -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT Dev Plugin for Google Chrome

2012-08-18 Thread mukarev
Thanks J. I finally made it with adding --enable-easy-off-store-extension-install to the shortcut of Chrome. Best regards, mukarev -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https

Re: how to use several html instead of just one hosted html

2012-08-07 Thread mukarev
one html container at the moment. You can explain this need further maybe. Ahoi! mukarev Am Freitag, 3. August 2012 03:43:38 UTC+2 schrieb tong123123: although this requirement seems strange, but maybe I need to change so. Currently, my gwt application has just one hosted html with script

Re: style css and gwt

2012-05-05 Thread mukarev
the standard gwt styles - maybe in dark.css or what you prefer to use. If this doesn't solve your problem, please tell again. Greetz, mukarev Am Mittwoch, 2. Mai 2012 22:25:35 UTC+2 schrieb assiya: hello, I would like to add the following html menu style http://goog_338768505 http

Re: [gwt-dnd] drag handles (urgent)

2012-05-05 Thread mukarev
)-method) I remember that Fred Sauer is working with the team of GWT to fit his library into a future version of GWT maybe 2.5. Hope this helps. Please contact for further information. Greetz, mukarev Am Mittwoch, 2. Mai 2012 16:27:11 UTC+2 schrieb aliwa: Is it possible to use multiple drag

Re: Need help with GWT 2.4 project

2012-05-05 Thread mukarev
out more (and bigger) mvp examples because of most of them are not open source of any kind. If you specify more exactly what you need - maybe I can tell you little more. Greetz, mukarev Am Mittwoch, 2. Mai 2012 06:05:20 UTC+2 schrieb Shwetha D: Hi, We are starting a new initiative

Re: Difficulty to run simple GWT application on tomcat server.

2012-05-05 Thread mukarev
. Greetz, mukarev Am Freitag, 27. April 2012 09:10:45 UTC+2 schrieb Rahul Sharma: I am creating a gwt application as following steps: First install gwt plugin in my eclipse(Helios). Create GWT project Add Dynamic web plugin going to property page of the project project Facets tab Select

Re: cannot load RPC service interface from external jar

2012-05-05 Thread mukarev
Hi HeyHei, did you specify the remote servlet in your web.xml? Notice that every servlet has to be mapped there (war/WEB-INF/web.xml) - example like this: ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN

Re: style css and gwt

2012-05-05 Thread mukarev
) and you want them to have your style, you could do it like this: subMenu.addItem(code class=my-css-styleCode/code, true, this); This link http://examples.roughian.com/index.htm#Widgets~MenuBar may help you. Greetz, mukarev Am Samstag, 5. Mai 2012 18:13:04 UTC+2 schrieb assiya: hi ; thank

Re: style css and gwt

2012-05-05 Thread mukarev
Ok, correct myself a little: MenuBar menuBar = new MenuBar(); Command myCommand = new Command() { @Override public void execute() { //do something when menuitem is clicked } }; MenuItem menuItem = new MenuItem(myText, myCommand); menuItem.setStyleName(my-css-style);

Exception in Debug but not in Run mode

2012-05-01 Thread mukarev
Hi folks, currently I'm implementing a client for jWebsocket. I got a strange error. If I try my implementation in debug mode, I get an JavaScriptException because of a null value. If I run it in run mode there's no problem - everything's working fine. Exception like this:

Re: does any Breedcrumb widget in gwt 2.4?

2012-03-27 Thread mukarev
I didn't find a breadcrumb too. So I had to build one on my own -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/I_6V3isdr-gJ. To post to this

Re: Custom Widget - Create HTML Element

2012-03-05 Thread mukarev
Hi jan, for what reason do you want to create a custom widget. GWT offersalready a lot of controls that you can combine or extend. In my repo I created for some GWT HTML5 Widgets you can see how I did creating new elements.

Re: Unable to perform GWT compilation on eclipse

2012-03-05 Thread mukarev
Hi San, did you ensure that no other server process is using the port? Have a look at the task manager processes to be sure about this. Maybe you have another server running for some reason or it's not stopped correctly? Have a look at your ports with netstat -a in your console. Greetz,

Re: Googlebot visits results in exception ?

2012-03-05 Thread mukarev
Hi Ed, 'undefined' is mostly occured when u touch a variable that's not initialized in JavaScript code. You should try having a look at your app like google bot - http://support.google.com/webmasters/bin/answer.py?hl=enanswer=158587 . You could use Google Webmastertools to analyze your site

Re: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus.

2012-03-05 Thread mukarev
Hi tong, maybe that error occurs, because your widget is somewhere out of sight of the client. Check it via FireBug or something else. You should check for css styles - with display:none or visibility:hidden, too. If that doesn't help, please let's have a look at the SSearchDetailResult

Re: GWT RPC not working behind Apache and Tomcat

2012-02-29 Thread mukarev
Hi again, a friend of mine solved the problem during the night. I will force him to write the solution here. Thanks for your thoughts. Greetz Markus On 25 Feb., 18:25, mukarev muka...@googlemail.com wrote: Hi folks, I'try to serve two gwt webapps via one apache from one tomcat with JK

Re: GWT RPC not working behind Apache and Tomcat

2012-02-27 Thread mukarev
copy all global mounts to all virtual hosts by putting # JkMountCopy All into the global server # Since: 1.2.26 /IfModule On 25 Feb., 19:55, Alan Chaney a...@mechnicality.com wrote: Hi Markus On 2/25/2012 9:25 AM, mukarev wrote: Hi folks, I'try to serve two gwt webapps via one

Re: GWT RPC not working behind Apache and Tomcat

2012-02-27 Thread mukarev
setting without any problems. Apache forwards anything with **/OurApp* to tomcat via *AJP* protocol (apache tomcat AJP connector). Are you also using AJP or mod_rewrite? Cheers, Lukasz Am Samstag, 25. Februar 2012 18:25:24 UTC+1 schrieb mukarev: Hi folks, I'try to serve two

GWT RPC not working behind Apache and Tomcat

2012-02-25 Thread mukarev
Hi folks, I'try to serve two gwt webapps via one apache from one tomcat with JK and I'm always running in the same error. Apache sends a 404 and tells me that it's not able to find the servlet if I try to communcate via RPC. I have two virtual hosts pointing at the directories within tomcat