Loading external JavaScript depending one on the other

2010-08-27 Thread Sebastian
); } }-*/; Is there any more GWT like approach to this? Best Regards Sebastian Hennebrueder http://www.laliluna.de -- 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

How to add a Composite Widget(gwt) to DynamicForm(smartgwt)

2010-08-21 Thread Sebastian Coronado A.
Hello I was using this DynamicForm, it belongs to smartgwt import com.smartgwt.client.widgets.form.DynamicForm; and then I created a Widget using composite from: import com.google.gwt.user.client.ui.Composite; The main problem is that when I try to add it to DynamicForm(using add method) it wont

Re: Browser hangs up for few requests and getting com.google.gwt.user.client.rpc.StatusCodeException

2010-08-19 Thread Sebastian Rothbucher
Hi, could this be a timeout problem? I sometimes also fell over Firefox going offline resulting in the same exception. Maybe one of the two is the case... Good luck Sebastian Rothbucher On 18 Aug., 20:05, Suneel Allareddy suneel.allare...@gmail.com wrote: Hi Team, Our Application is purely

How Do I create a jar that uses composite

2010-08-18 Thread Sebastian Coronado A.
Hello I created a Widget that uses gwt widgets using composite, my question is How can I create a jar from this or a folder so it can be reused easily in another projects. I was following this tutorial : http://www.vogella.de/articles/GWT/article.html, it has one example but it only works for

Gwt Mac-Ubuntu- Compatibility

2010-08-10 Thread Sebastian Coronado A.
Hello I am making a web service using smartgwt and poi-2.5.1- final-20040804.jar, When I run the project as a webservice on Mac it works fine, but when I run the project on ubuntu using the same ide(eclipse) it gives error 503 and it wont load. This project reads from an excel file. I will upload

Re: docklayoutpanel scroll feature?

2010-08-08 Thread Sebastian Rothbucher
Hi, my suggestion would be using the Firebug feature to find out which style is set - and overwrite using the DOM (to scroll: auto) if nothing else is possible... Hope this helps - best Regards Sebastian Rothbucher On 8 Aug., 14:16, asianCoolz second.co...@gmail.com wrote: may i know

Re: Why should I need a Session ID?

2010-08-08 Thread Sebastian Rothbucher
(when you use TamperData with Firefox, you can make the JSESSIONID value visible). So, I'd agree with you not to send the primary key of the user anywhere - just leave it in the server side user session Hope this helps - best regards Sebastian Rothbucher On 8 Aug., 03:55, Magnus alpineblas

Re: Mysql Connector/J

2010-08-07 Thread Sebastian Rothbucher
in Tomcat (you can check out the tomcat manual for details). Hope this helps - best regards Sebastian On 6 Aug., 05:22, Maurice Nee lyden...@gmail.com wrote: Can someone explain to me how to get JDBC to connect to MySQL in my GWT project. Where do I put the mysql-connector-java jar? In war

Re: is ZK better than GWT..?

2010-08-01 Thread Sebastian Rothbucher
it for a while now and it turned out to be a very solid ground. (Maybe ZK would have done the same when I'd have followed it further - all starting issues can surely be solved there as well; however, I've never regretted choosing GWT). Hope this helps - best Regards Sebastian On 31 Jul., 12:37

Re: Need help on generating session id

2010-08-01 Thread Sebastian Rothbucher
)getThreadLocalRequest().getSession().getAttribute(suffix)).get(something) and thus have different values for different windows (assuming you open the app in two Firefox windows for instance). Hope this helps - best Regards Sebastian Rothbucher On 1 Aug., 03:24, mP miroslav.poko...@gmail.com wrote: Hi Mani You

Re: Development time for GWT apps versus 'traditional' MVC with JSP

2010-08-01 Thread Sebastian Rothbucher
and best Regards Sebastian Rothbucher On 31 Jul., 19:18, Julius julius.kle...@gmail.com wrote: Hi, What are your experiences regarding development time for rich internet applications using GWT compared to the more traditional approach with JSP and an MVC pattern? I am currently developing

Re: Mobile Phone permutation strategy suggestions wanted

2010-08-01 Thread Sebastian Rothbucher
- probably on the Blackberry 6 as well then), but I guess it will become hard without JS. Hope this helps - best Regards Sebastian On 29 Jul., 23:36, Falcon msu.fal...@gmail.com wrote: Hey all. I'm going to be using GWT for some mobile phone web applications. My company primarily makes Java

Re: create agenda (meeting invitation) by GWT

2010-08-01 Thread Sebastian Rothbucher
Hi ichi, there are two ways at least on my mind now: - use the google APIs to insert events into the google calendar - send an iCal file via E-Mail (can then be added to google calendar of Outlook or iCal, ) Hope this helps - best Regards Sebastian On 29 Jul., 14:37, ichi ichi8

Re: How to debug GWT serverside code with non suported classes by Google App Engine (debugging with tomcat?)

2010-08-01 Thread Sebastian Rothbucher
have to set env variables first. You can find details on that at http://confluence.sakaiproject.org/display/BOOT/Setting+Up+Tomcat+For+Remote+Debugging Hope this helps - best Regards Sebastian Rothbucher On 29 Jul., 14:05, lmedici med...@pm-medici.ch wrote: Hi i try to debug a method

Re: GWT/iphone/phonegap server communication

2010-08-01 Thread Sebastian Rothbucher
/f1c07299a7c7ad15 RegardsSebastian On 31 Jul., 20:17, Sebastian Rothbucher sebastian.rothbuc...@clarities.de wrote: Hi, I guess the simplest solution is to cast the service coming out of GWT create and change the endpoint - which implies that you have to add code each time GWT.create is used: private

Re: One v.s N EventBus

2010-07-31 Thread Sebastian Hoß
I've been using multiple EventBus instances together with Gin/Guice and named annotations. So for example each view that needs to communicate in some way with my REST server is attached to the @Server HandlerManager. That way each component can have multiple communication channels open and it is

Re: GWT/iphone/phonegap server communication

2010-07-31 Thread Sebastian Rothbucher
(SomeStandardDatabaseService.class); if(someStandardDatabaseService instanceof ServiceDefTarget){ ((ServiceDefTarget)someStandardDatabaseService).setServiceEntryPoint(http:// somehere); } Hope this helps - I'm also still working on the topic... Best Regards Sebastian Rothbucher On 20 Jul

Re: Cross-domain call

2010-07-31 Thread Sebastian Rothbucher
the webservice from 2.) Hope this helps - best regards Sebastian Rothbucher On 31 Jul., 19:44, Deepak Singh deepaksingh...@gmail.com wrote: Could you pls provide some link or code, that how to write remoteserviceservlet and integrate with gwt. On Sat, Jul 31, 2010 at 11:04 PM, Subhrajyoti

Re: Unable to find type

2010-07-31 Thread Sebastian Rothbucher
Hi leslie, maybe a search for the class name (simple name) in the deployed folder helps; just in case a wildcard search is being done... Best Regards Sebastian On 31 Jul., 20:23, leslie web...@me.com wrote: GWT 2.0.3 Eclipse Galileo MacOS X 10.5.8 Java 5 Hello, At one point I created

Re: GWT evaluation: How to realize this specific app scenario? (v.2)

2010-07-30 Thread Sebastian Rothbucher
this helps... Sebastian On 30 Jul., 13:41, A.Augustini alessandro.august...@googlemail.com wrote: [**Republished to get rid of ugly line-break cluttering**] Dear GWT Community members: As GWT newbie I'm currently evaluating GWT for some potential future projects. After reading available

Re: GWT HIBERNATE ECLIPSE

2010-07-27 Thread Sebastian Coronado A.
'/ source path='hiber'/ /module On 27 jul, 08:13, Arthur Kalmenson arthur.k...@gmail.com wrote: What does your GWT module file look like (.gwt.xml)? -- Arthur Kalmenson On Mon, Jul 26, 2010 at 12:36 PM, Sebastian Coronado A. sca...@gmail.com wrote: Hello I am testing a gwt project using

GWT HIBERNATE ECLIPSE

2010-07-26 Thread Sebastian Coronado A.
Hello I am testing a gwt project using rpc to comunicate with the server, using hibernate and postgres, Everything compiles okey but when I run it as a Web Aplicacation it says the following error: 21:41:22.992 [ERROR] [hiberpost] Errors in 'file:/Users/Sebastian/ Documents/workspace/hiberpost

Re: Java 7 And Closures

2010-07-20 Thread Sebastian Rothbucher
come in, I still like the command pattern... Regards Sebastian On Jul 19, 8:15 pm, dolcra...@gmail.com dolcra...@gmail.com wrote: I think GWT should refrain from including Java 7 features until it is released at least... On Jul 19, 1:48 pm, Daniel Simons daniel.simo...@gmail.com wrote: Hey

Re: How to write good performance code?

2010-07-15 Thread Sebastian Rothbucher
You might have a look @ http://code.google.com/events/io/2010/sessions/faster-apps-faster-gwt-compiler.html and @ http://code.google.com/events/io/2010/sessions/architecting-performance-gwt.html Some patterns are really helpful, esp. when it comes to minimizing we objects (so it's not just a

Re: Running a .exe file from server side code

2010-07-04 Thread Sebastian Rothbucher
be a - Djava.security.policy=... file. Other application servers like WebSphere will handle that similarily. So I'd check all those policy files (and on the test(!) system first allow all and then limit down to see which file is effective). Hope this helps... Sebastian On Jul 2, 4:28 am, Rajesh rajesh...@gmail.com wrote: Hi

Re: SuggestBox question - is it possible to react on sub sequences of the words?

2010-07-04 Thread Sebastian Rothbucher
Hi, I guess you have to provide an own SuggestionOracle which searches a List with a search algorithm that is a s good as possible... - I did provide an own suggestion oracle for another occation and it works quite well... On Jul 2, 5:21 pm, crojay78 croja...@googlemail.com wrote: Hi, I am

Re: How to show a load screen during rpc call?

2010-07-04 Thread Sebastian Rothbucher
Hi, what I'd to is: 1.) Display an image with some loading... animation 2.) Start the RPC asynchronously, e.g. like tagDatabaseService.loadAllTagsForPerson(new TagQueryMessage( tagQuery), new AsyncCallbackTagListMessage() {

Re: Problem with Eclipse, Google plugin and WTP

2010-07-01 Thread Sebastian Rothbucher
Hi, can you not copy all libs to WEB-INF/lib and include them from there? Let me know if this helps... On Jun 30, 1:29 pm, SimonM simon.manqu...@gmail.com wrote: Hello, I have troubles with WTP and Google plugin for Eclipse. I have one Dynamic Web Application Project, and I use GWT in this

Re: Sessions and GWT

2010-06-25 Thread Sebastian Rothbucher
page, but you could find out by installing the TamperData firefox plugin and looking into the interaction of a GWT app with a server. I hope that helps you a little further Sebastian On Jun 17, 7:19 am, fmod francisco.mode...@gdsoft.eu wrote: Hi, I need to re-implement the classic login page

Re: GWT and javascript php websites

2010-06-25 Thread Sebastian Rothbucher
Hi, just one idea without having thought it through entirely: Could you use the history mechanism to trigger some Execution? On Jun 21, 10:27 pm, cabo087 elvin...@gmail.com wrote: Hello Shedohan, Thank you for the answer. But i don't think that this is what i'm looking for. My php file

Re: Serialization Problem

2010-06-25 Thread Sebastian Rothbucher
a plain pojo and an annotated pojo... - you could just try with a few samples... Hope this helps Sebastian On Jun 14, 8:45 pm, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote: Exception while dispatching incoming RPC call com.google.gwt.user.client.rpc.SerializationException: Type

Re: UiBinder Hyperlink history

2010-04-23 Thread Sebastian Hoß
g:Hyperlink targetHistoryToken=YOUR_TOKEN_HERE / clicking this link will add a new history item with the given token and will fire a new ValueChangeEvent. On Thu, Apr 22, 2010 at 10:44 AM, raj raj.cowbo...@gmail.com wrote: Hi !   I'm working gwt2.0 UIBinder. I tried to maintain history in my

Re: How do I use GWT-Ext 2.0.6 widgets with GWT 2.0?

2010-03-22 Thread Sebastian
Yes it it still possible. We still use it. You might discover something that doesn't work, but I cannot remember making any (GWT-EXT related) change when upgrading from GWT 1.7 to 2.0. We certainly use the date time pickers and the multiple fields form. Sebastian On Mar 21, 4:17 pm, Dan dan.a

ValueChangeEvent in DatePicker

2010-01-25 Thread Sebastian Beigel
to do this w/out duplicating code *and* polluting the framework's namespace? Of course I could implement my own date picker (or take any of the open source ones) -- but the existing one is perfectly fine -- expect for this part... Sebastian -- You received this message because you are subscribed

Re: GWT 2.0 uiBinder not completely working with DockPanelLayout (for me that is)

2010-01-24 Thread Sebastian
of htmlpanels Best Regards Sebastian Hennebrueder On Jan 24, 8:26 pm, Joe Hudson joe...@gmail.com wrote: Hello, I am new to GWT 2.0 and was trying out the uiBinder.  I have a simple test project to get my feet wet and it isn't working as expected.  I am only seeing the north and west sections

Adding a script to BODY in runtime.

2010-01-22 Thread Sebastian Quiles
Hi, I need to add a script in runtime (in the constructor of a Widget)... I ve tryied several ways and no one works on the 3 browsers (FF, IE, CH) I have read this post:

[gwt-contrib] Patch for RichTextEditor

2010-01-22 Thread Sebastian
Sebastian Hennebrueder -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Building GWT based application in a comfortable way with buildr (instead of Ant or Maven)

2010-01-21 Thread Sebastian
. It is of course way shorter then a ant script or a maven script. I can use it with 'buildr deploy' to upload the application to my server or 'buildr install' to install it into my maven repository. Best Regards Sebastian Hennebrueder http://www.laliluna.de require 'buildr' # use my repository

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Sebastian
DecoratedTabPanel in a UI-file. It extends the TabPanel which canno't be included either. You can still add it programmatically but it could break layout. Use the TabLayoutPanel instead. You can find binding examples in the source code of every component. It is right at the top. Best Regards Sebastian

Re: UiBinder and DecoratedTabPanel...

2010-01-19 Thread Sebastian
a lot for your input, Sebastian!! :) I know it might be basics for you guys, but could you maybe please explain to me how I configure a DTD in IntelliJ? :} One of the reasons that I have decided to avoid TabLayoutPanel is that the panel does not come with a default styling... have you found

Icon next to anchor

2010-01-11 Thread Sebastian Beigel
to native CSS (using a background-image: url(...) rule with no (automatic) optimization)? Thanks Sebastian -- 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

Re: Icon next to anchor

2010-01-11 Thread Sebastian Beigel
and is optimized to an data-url. Nice. Is this the recommended way to use images in CSS if you need to control the element's dimensions (i.e. the images are not subject to real spriting)? Sebastian On Mon, Jan 11, 2010 at 3:19 PM, Sebastian Beigel sebast...@beigel.de wrote: Hi, I want to position

Re: Icon next to anchor

2010-01-11 Thread Sebastian Beigel
going without :) Sebastian On Mon, Jan 11, 2010 at 3:46 PM, Thomas Broyer t.bro...@gmail.com wrote: On Jan 11, 3:38 pm, Sebastian Beigel sebast...@beigel.de wrote: Right now I use a DataResource (instead of an ImageResource) in my ClientBundle and use something like this in my CSS: @url

Re: Loading/parsing time for CssResource

2010-01-09 Thread Sebastian Beigel
Please ignore this post, it's a double post as I didn't realize that new mails are moderated. I wrote a newer (and more concise :) post discussing this subject (search for Injected CSS rules are evaluated after onModuleLoad/Widget#onLoad) My apologies, Sebastian -- You received this message

Loading/parsing time for CssResource

2010-01-08 Thread Sebastian
this? Something like a ClientBundle/ CssResource onLoad-method could be a (rather dirty) work-around... Thank you, Sebastian -- 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

Re: GWT dev mode with pre-installed tomcat

2010-01-08 Thread Sebastian
/default/bund-apfel/target/bund-apfel-gen -war / Users/hennebrueder/workspaces/default/bund-apfel/target/bund-apfel - startupUrl apfel/Editor.html de.laliluna.bund.Editor Best Regards Sebastian Hennebrueder On Jan 8, 2:21 pm, Nuno brun...@gmail.com wrote: Hello everybody, I'm implementing gwt

GWT 2 Css issues with new layout panels (Proposal)

2010-01-08 Thread Sebastian
styled using something like .gwt-SplitLayoutPanel gwt-north{ .. } As not all browser support the selector, it could be better to use gwt-SplitLayOutPanel-north instead of gwt-north. Best Regards Sebastian Hennebrueder http://www.laliluna.de -- You received this message because you

Re: Injected CSS rules are evaluated after onModuleLoad/Widget#onLoad

2010-01-08 Thread Sebastian Beigel
I found a work around, I wrapped the positioning code in my onLoad() method in a DeferredCommand and it works. Is this the preferred solution for this problem? Sebastian On Fri, Jan 8, 2010 at 4:38 PM, Sebastian Beigel sebast...@beigel.de wrote: Hi, I tried to follow the best practices

Injected CSS rules are evaluated after onModuleLoad/Widget#onLoad

2010-01-08 Thread Sebastian Beigel
? Is there a work-around? I really don't want to move my CSS back to static files and lose all the great advantages from using ClientBundles. But I need my CSS rules parsed and evaluated *before* my code runs. Thank you, Sebastian -- You received this message because you are subscribed to the Google Groups

Eclipse Plugin Installation Problem

2009-10-12 Thread Sebastian Hoberg
? Thanks in advance, Sebastian --~--~-~--~~~---~--~~ 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-toolkit@googlegroups.com To unsubscribe from this group, send

Re: bmi.js interfering with GWT (mobile connection

2009-08-28 Thread Sebastian
/myfile.abc just go to / myfile.abc - where (obviously) the file is not found - thus nothing is loaded at all. (GWT 1.7.0) Does anybody have any idea why this could be happening or how to fix this? Maybe this script somehow messes up the order of injected javascript? Best regards Sebastian On Aug 27

bmi.js interfering with GWT (mobile connection

2009-08-27 Thread Sebastian
Hi, we are experiencing a problem with the loading of GWT on mobile broadband connections. Some providers add a script called bmi.js to any site. This script is supposed to increase speed by compressing images, etc. http://forum.vodafone.co.uk/index.php?showtopic=8611

<    1   2