Re: Beginner

2011-09-20 Thread Daniel Gerep
Thanks Juan -- *Att* *Daniel Gerep* -- 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 email to google-web-toolki

Beginner

2011-09-20 Thread Daniel Gerep
help PS: I have to my boos something day 22/09 -- *Att* *Daniel Gerep* -- 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

Re: Templates generating links that behave like an Anchor

2011-09-20 Thread Daniel Guggi
:81) the element I wrap has a parent widget "InlineHTML"? Any ideas? ty,daniel On Tue, Sep 20, 2011 at 1:37 PM, Jens wrote: > Maybe you can add a unique Id to your a-tag and then use > > Element e = Document.get().getElementById(a-tag-id); > Anchor anchor = Anchor.wrap(e

Templates generating links that behave like an Anchor

2011-09-20 Thread Daniel Guggi
he user to another place)? Anchor anchor = new Anchor(); anchor.setText("sometext"); anchor.addClickHandler(this); someWidget.add(anchor); ty, daniel -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: Editor and RequestFactory

2011-09-02 Thread Daniel Guggi
like this? public void edit() { ProjectRequest request = commonRf.projectRequest(); ProjectProxy project = request.create(ProjectProxy.class); request.save(project).to(new Receiver() { ... }); ProjectEditor pe = view.getProjectEditor(); d

Re: RequestFactory don't play nice with guice?

2011-08-31 Thread Daniel Dietrich
Wow, that works fine for me. Thanks a lot! -- 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 email to google-web-toolkit+unsubsc

Re: RequestFactory-ValueProxy in conjunction with RequestFactoryEditorDriver vs. SimpleBeanEditorDriver

2011-08-30 Thread Daniel Guggi
thomas, thank you again for clarification! I think I'll go with (your) approach3 which seems more natural to me and I do not have to store the orderDescriptionProxy as an instance-var in my activity! daniel On Tue, Aug 30, 2011 at 11:43 AM, Thomas Broyer wrote: > > > On Tues

RequestFactory-ValueProxy in conjunction with RequestFactoryEditorDriver vs. SimpleBeanEditorDriver

2011-08-30 Thread Daniel Guggi
hi, I'm currently playing around with RequestFactory and the EditorFramework. I use requestfactory as simple rpc-mechanism (meaning I currently just use ValueProxies not EntityProxies) using the following service: public class OrderService { public static String placeOrder(OrderDescription de

Re: How to avoid specifing a tokenizer for each place

2011-08-25 Thread Daniel Guggi
ndler; }* As far as I understand, I'm creating a the MainFactory-Ginjector from ?within? another Ginjector (GwtAppGinjector). I'm wondering if this is a legitim approach or if there are better ways (best-practice) to do this? tia, daniel On Thu, Aug 25, 2011 at 8:39 AM, Dan

Re: How to avoid specifing a tokenizer for each place

2011-08-24 Thread Daniel Guggi
right, now i got it :) I'll give it a try, thanks thomas! On Wed, Aug 24, 2011 at 9:31 PM, Thomas Broyer wrote: > Something like: > > interface FooFactory { > APlace.Tokenizer fooA(); > BPlace.Tokenizer fooB(); > } > > interface BarFactory { > CPlace.Tokenizer barC(); > DPlace.Tokenizer

Re: How to avoid specifing a tokenizer for each place

2011-08-24 Thread Daniel Guggi
r and have GIN be the generator)." * I don't really understand your idea - can you please clarify? I use GIN but how will GIN generate an implementation of an "custom" interface - there has to be some sort of generator i think? Thank you, daniel On Wed, Aug 24, 2011 at 5:48

Re: How to avoid specifing a tokenizer for each place

2011-08-24 Thread Daniel Guggi
ll Tokenizers (Using @WithTokenizer annotation) in the gwt standard approach? Are there any better ways to achieve such functionality? tia, daniel On Wed, Aug 24, 2011 at 9:53 AM, Daniel Guggi wrote: > hi, > > suppose I have an application which consists of serveral modules like > - main

Replacing a generator with another implementation

2011-08-24 Thread Daniel Guggi
s the correct way to do this as doesn't seem to work for generators? tia, daniel -- 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 f

How to avoid specifing a tokenizer for each place

2011-08-24 Thread Daniel Guggi
on't see that the PlaceHistoryMapperWithFactory can help here, since I still have to adjust the "main"-module? are there any approaches to this? Could I use a custom generator (in the main-module) that for instance finds all types of "MyAppTokenizer" and creates a Pla

Re: GIN and ClientBundle (Singleton or not-to-Singleton)?

2011-08-18 Thread Daniel Guggi
thanks for clarification! hf, daniel On Thu, Aug 18, 2011 at 10:56 AM, Jens wrote: > Some time ago I have used approach 2) and have bounded all ClientBundles as > Singletons. But now I would go with 1) because when you look at the > generated source code of a ClientBundle (use -ge

Re: gwt 2.3 + spring 2 + maven 2

2011-08-17 Thread Daniel Guggi
@spring you may have a look here (requestfactory + spring3 integration): http://jsinghfoss.wordpress.com/2011/08/10/gwt-2-2-0-requestfactory-spring-3-0-x-integration/ here an example pom (i use maven 3) http://maven.apache.org/POM/4.0.0"; xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance";

GIN and ClientBundle (Singleton or not-to-Singleton)?

2011-08-17 Thread Daniel Guggi
- why does usage3 lead to an exception? i use gin1.5 thank you, daniel -- 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: Best way to prevent dual login in gwt.

2011-08-17 Thread Daniel Mauricio Patino León
You must check every request with a filter, and in the case the request is > not valid, show the log. In meanwhile in client side don't check anithing > > 2011/8/17 Daniel Mauricio Patino León > >> We use our own security implementation (implement shiro or spring will >>

Re: Best way to prevent dual login in gwt.

2011-08-17 Thread Daniel Mauricio Patino León
t way... imagine 1,000 users requesting the server every X time 2011/8/17 Juan Pablo Gardella > See apache shiro or spring security. You must manage authentication and > authorization in server side > > 2011/8/17 Daniel Mauricio Patino León > >> Some one can give me a idea of

Best way to prevent dual login in gwt.

2011-08-17 Thread Daniel Mauricio Patino León
Some one can give me a idea of how to manage this? i dont want let users log in in my GWT app (pure GWT dom manipulation) in two places at the same time, including the same browser (different tabs) any help be apreciated -- You received this message because you are subscribed to the Google Grou

Re: Problem with css and clientbundle and uibinder

2011-08-11 Thread Daniel Guggi
with uibinder only (i mean without calling ensureInjected() from somewhere)? thank you! On Thu, Aug 11, 2011 at 1:01 PM, Daniel Guggi wrote: > hi, > > i'm trying to use a css-clientbundle and uibinder like this: > > *Resources.java* > package gwtapp.

Body is dislocated when adding a Panel

2011-08-08 Thread João Daniel
hile the body component starts some pixels below the top. Have anyone experienced this problem before? Should I post some code? Many thanks! João Daniel -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send

Re: Auto refresh data grid after x seconds

2011-07-21 Thread Daniel Peterson
You might try setting all your data into Labels and keeping the references to the labels in a vector, arraylist, map, whatever. Attach the labels to the grid using the setWidget method. Updating the labels you have stored will update the grid entries. I've done that with a FlexTable, though witho

GWT RPC with large data arrays

2011-07-21 Thread Daniel Peterson
I'm trying to transmit large amounts of data from my server to my client using the Asynchronous RPC calls. I've noticed that for these arrays often take quite a long period of time to transmit. I'm only sending four sets of data, but containing several hundred (to perhaps a thousand) points each. I

Re: Re : When using HistoryTokens with Activities and Places can you remove the (:) colon?

2011-07-01 Thread Daniel Johnston
oolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- -Daniel Johnston -- You received this message because you are

When using HistoryTokens with Activities and Places can you remove the (:) colon?

2011-07-01 Thread Daniel Johnston
By default it uses this mechanism http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html#Places, however I would like my URLs to look like this.. #Items instead of #Items: Thanks -- -Daniel Johnston -- You received this message because you are subscribed to

Re: GWT Modules

2011-06-30 Thread Daniel Mauricio Patino León
; only include code in the generated .js file that is actually in use. > Therefore, only implementations of the methods in modules A & B that > are used by your Login module will be downloaded by the client. > > Ryan > > On Jun 30, 12:58 pm, Daniel Mauricio Patino León > wrot

GWT Modules

2011-06-30 Thread Daniel Mauricio Patino León
Since i read the FAQ and features of GWT and i dindt see info about this, can someone please tell me how the modules works? I mean if i dev a Module Login whit a few clasess (Fast download just a few kb's) then i dev a Module A w/ arround 40 clasess (huge kb's) then i dev a Module B w/ arround 4

Re: ActionCells within a CompositeCell not receiving onBrowserEvent()

2011-06-29 Thread Daniel Johnston
email to google-web-toolkit@googlegroups.com. > To unsubscribe from this group, send email to > google-web-toolkit+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- -Daniel Johnston -- You receive

Re: ActionCells within a CompositeCell not receiving onBrowserEvent()

2011-06-29 Thread Daniel Johnston
m> wrote: > Are you following the exact sample? or are you using the CompositeCell in > your own project? > > Can you paste the code where you are associating your CompositeCell with a > table or CellList > > ~Ashwin > > > On Wed, Jun 29, 2011 at 9:42 AM, Daniel Jo

Re: ActionCells within a CompositeCell not receiving onBrowserEvent()

2011-06-28 Thread Daniel Johnston
Thanks for the help Ashwin, but I checked the import, com.google.gwt.dom.client.Element, and its correct, however the ActionCells within the CompositeCell are still not receiving the onBrowserEvent() . On Tue, Jun 28, 2011 at 6:58 PM, Ashwin Desikan wrote: > Daniel, > > Check yo

ActionCells within a CompositeCell not receiving onBrowserEvent()

2011-06-28 Thread Daniel Johnston
tCell(); sb.appendHtmlConstant(""); cell.render(context, hasCell.getValue(value), sb); sb.appendHtmlConstant(""); } }; Thanks in advance --- -Daniel Johnston -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" g

Re: Hosted Mode Server Side Code Change

2011-06-23 Thread Daniel Colchete
Quynh, I'm using GWT 2.2 with Eclipse, with the Eclipse Google Plugin. What you are describing works fine for me. The only time I have to restart the server is when I change the class structure (add a new class for example) on the client side. Then I have to restart everything so that my client si

Making GWT ignore fields in models

2011-06-22 Thread Daniel Colchete
Good day everyone! I'm having a problem that already have been discussed a lot but I couldn't find a solution for it online. I have a model called Case1Model that implements Serializable correctly. I started using ORMLite to persist objects on the server (really simple to use). I would like to us

Re: Problem with GWT Service results

2011-06-21 Thread Daniel Mauricio Patino León
RootPanel.get("mainContainer").add(new Label("Array lista 2: "+lista.toString())); RootPanel.get().add(new Label(String.valueOf("Array lista 2: "+lista.size(; for(int i = 0; i < lista.size(); i++){ RootPanel.get().add(new Label("BOTON "+i))

Re: Pluggable modules

2011-06-15 Thread Daniel G
Hi Berto, Hi Mike, can you give me some more details about your plugin-design? What architecture are you using for the several applications, MVC or MVP? Regards, Daniel On 11 Jun., 20:36, lemaiol wrote: > HI Mike, > > If I got it right, you want a main GWT application (own WAR) and

Re: GWT SEO

2011-06-07 Thread Daniel
Thanks for your reply. However, for already coded projects it might be hard to add yet another framework. Isn't it possible to use that crawlerservice URL just with a regular GWT app? And then just the crawlerservice app is written with GWTP. Oh and @maq: sorry for asking questions here in your

Re: GWT SEO

2011-06-07 Thread Daniel
As far as I know there isn't anything else you can do, except for the official google ajax solution you mentioned: http://code.google.com/web/ajaxcrawling/docs/getting-started.html I'd be very interested in this, too;) Also I'm thinking: If I provide very simple html pages of the GWT content fo

MultiWordSuggestOracle without automatic sorting?

2011-06-07 Thread Daniel
s? I already tried to write a subclass of MultiWordSuggestOracle without alphabetical sorting, but there are many private attributes I can't access in the subclass, so I would have to rewrite the whole class (+ dependencies)? Thanks, Daniel -- You received this message because you are sub

MultiWordSuggestOracle: disable auto sorting

2011-06-07 Thread Daniel
ready tried to write a subclass of MultiWordSuggestOracle without alphabetical sorting, but there are many private attributes I can't access in the subclass, so I would have to rewrite the whole class (+ dependencies)? Thanks, Daniel -- You received this message because you are subscri

Eclipse plugin

2011-06-02 Thread Daniel Mauricio Patino León
Hello there, iam developing whit gwt and gwt plug in for ecplise and when i restart the server (usually 2 or 3 times after) i always get this err [SPAM] [proyecto] - Invoke native method @com.google.gwt.core.client.impl.Impl::apply(Ljava/lang/Object;Ljava/ lang/Object;Ljava/lang/Object;)

Aw: Uibinder xml auto-complete freezes

2011-05-31 Thread daniel brelovsky
hi, if you are behind a proxy have a look here: https://groups.google.com/d/topic/google-web-toolkit/2j0RulDMfgc/discussion -- 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@googlegr

Re: RequestFactory not working when upgrade from 2.2 to 2.3

2011-05-18 Thread Daniel Dietrich
Including gwt-servlet-deps.jar has no effect (for me) other than still receiving the mentioned exception java.lang.NoClassDefFoundError: org/json/JSONException). However, including the latest json classes, like Joshua does, works fine. 2011/5/16 Thomas Broyer > No, with Maven you have to add th

CSS Improvements in ClientBundle

2011-05-17 Thread Daniel Adrian
Hi all, I was wondering if there is anything on the timetable for GWT to include some enhancements to the CSS support (I mean other than the CSS3 stuff that were mentioned in the fireside chat @ Google I/O 2011). We already have constants with the @def and the @if to check for user agent, @Sprtie,

Re: High-performance GWT: best practices for writing smaller, faster apps

2011-05-14 Thread Daniel
Here you go: http://www.youtube.com/watch?v=0F5zc1UAt2Y On May 13, 4:42 pm, Nicolas Antoniazzi wrote: > Hi, > > in the Google I/O, David Chandler did a presentation about best practices > with GWT. > I have gone to youtube, on the google developer > chanelhttp://www.youtube.com/user/GoogleDevelo

RichTextArea doesn't allow to write nothing

2011-05-14 Thread Daniel Alonso Sánchez
Hi Buddies! I'm using gwt 2.2.0 and I need to insert a RichTextArea inside a DialogBox. The problem is that when the RichTextArea component is rendered, there's no way of inserting anything. There is a blank region when the component should be rendered, but there is no way of typing anything. Thi

How to set focus of an AbstractInputCell programmatically

2011-04-15 Thread Daniel Johnston
hierarchy? I guess this would explain why I can change its value in the Debugger and it works yet it doesn't update the HTML in the CellTable's cell. Help on this subject would be much appreciated. Thanks in advance. -- -Daniel Johnston -- You received this message because you ar

WANTED: GWT developers for Part-Time or Full-Time Contracts

2011-03-31 Thread Daniel Cowx
Hey folks, My name is Daniel and I'm looking for a few talented engineers to work (remotely) on a short term contract for my company. Candidates can work part-time or full-time, but must be proficient with GWT. The initial project we're looking to staff is for the development of

Re: Positioning a Widget using CSS

2011-03-23 Thread Daniel Renner
you to get the right attributes for the positioning of your elements. Greetings Daniel -- 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 thi

Re: GWT communicate with Tomcat

2011-03-23 Thread Daniel Renner
change for you. You only have to implement the IsSerializable-Interface (The class have to lie in the XX.XX.client.XX. package). Try it out, GWT is a nice Framework and easy to understand (if you realized the difference between client/server code). Greetings Daniel -- You received this m

Re: Need Feedback on charts frameworks for GWT

2011-03-22 Thread Daniel Renner
I only used the GXT-Charts until now. They are very easy to implement and, imo, they are looking great. But you have to use Flash to display the charts in your browser ;/ . If you dont use GXT, why include such a big "framework"? Only for generating some charts? If you want to use the GWT-Framework

GWT 220 NullPointerException (+compiler.max.vars.per.var warning)

2011-03-22 Thread Daniel Renner
m.google.gwt.dev.Compiler.main(Compiler.java:166) I dont know what to do and -> I hope anybody can help me with my problem :) . Greetings, Daniel -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

weird effect with UmbrellaExceptions in GWTTestCase?

2011-02-21 Thread daniel
I noticed a weird effect if an UmbrellaException is thrown inside a GWTTestCase. The test does not fail but hangs until timeout. Can someone confirm this behavior? my code to test this: public void test() { Set exceptions = new HashSet(); exceptions.add(new NullPointerException("t

Re: Network visualization with GWT

2011-02-16 Thread Daniel
I'm going to try to get this working today. Thanks for the link! -- 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 email to googl

Network visualization with GWT

2011-02-15 Thread Daniel
I'd like to integrate network visualization into my GWT app. Here's what I've found thus far: *Drawing:* gwt graphics *Network libraries:* graphviz (specifically neato for the layout) JUNG (doesn't

Re: CellList with ListDataProvider does not get redrawn on data change

2011-02-07 Thread Daniel Francisco
I also solved my problem, thanks to the mvp4g group. It was an mvp4g related issue. I was doing something wrong causing to have two different instances of the view. I was updating the CellList on the view that wasn't been showed. On 7 feb, 12:14, Peter Ondruška wrote: > OK got it working. It work

Re: CellList with ListDataProvider does not get redrawn on data change

2011-02-04 Thread Daniel Francisco
Ok, tell me if it works for you. On 4 feb, 09:02, Peter Ondruska wrote: > Seems like it is not possible to update ListDataProvider within callback > function. I am trying to refactor to using AsyncDataProvider.. -- You received this message because you are subscribed to the Google Groups "Goog

CellList with ListDataProvider does not get redrawn on data change

2011-02-02 Thread Daniel Francisco
Hi. I'm working on a project with GWT 2.1 and mvp4g. In a view, I'm using a CellList backed with a ListDataProvider. If I pass a List with data when instantiating the ListDataProvider, the CellList shows this data. The problem is that afterthat, the CellList never gets redrawn whenever I change th

Re: Best way to integrate GWT with existing Spring services?

2011-01-17 Thread Daniel Francisco
icate with the server. It works perfectly and I think is a good approach. Thanks to all anyway. Daniel. On 31 dic 2010, 14:45, "Paul G." wrote: > Hi Daniel, > > you are right, this question has been asked so many times. We're using > GWT-RPC because when we stared

Location.getParameter() returns nothing in GWT 2.1

2011-01-11 Thread Daniel
In GWT 2.1, the Location.getParameter("action") returns nothing. But Location.getQueryString() is able to get all the query parameters and had to workaround using the query string. I am using IE 6. Is this a bug in GWT 2.1? -- You received this message because you are subscribed to the Google Gr

Re: Happy New Year to the GWT team

2010-12-31 Thread daniel
; > >> Best wishes for 2011 to the GWT team. GWT is awesome. > > >>> Daniel > > >>> -- > >>> You received this message because you are subscribed to the Google Groups > >>> "Google Web Toolkit" group. > >>> To post t

Best way to integrate GWT with existing Spring services?

2010-12-30 Thread Daniel Francisco
Hi everybody, I know is likely that this question has been asked many times before. I've googled a lot but I still don't have a clear answer, and I'm getting crazy. I have to start a new project which consists of creating the GUI layer using GWT of a backend application for which a project alread

Re: HTML5 placeholder

2010-12-23 Thread Daniel Simons
I tried a test using setPropertyString, and cannot get it to work. Am I wrong in thinking that 'this[name] = value;' is not useful in this case b/c placeHolder should be an actual element attribute rather than a property that is referenced in js? Daniel On Thu, Dec 23, 2010 at 9:12

Re: HTML5 placeholder

2010-12-23 Thread Daniel Simons
You could call setAttribute on the UiField. This would look like the following: yourField.getElement().setAttribute("placeHolder",""); Daniel On Thu, Dec 23, 2010 at 8:41 AM, alexh wrote: > Hi, > > I was wondering there is a way to add an HTML5 attribute like

Re: putting two Anchor objects one below the other without "" tag

2010-12-22 Thread Daniel Simons
I think the css property you are looking for is "display:block". You can assign this to your image or wrap your image in a div (divs have block display by default). Daniel Simons On Dec 22, 2010, at 9:57 AM, Ben Imp wrote: > That is kind of a tricky question to answer, as it ki

FileUpload Cell

2010-12-20 Thread Daniel Simons
Any suggestions for creating a FileUpload cell? It looks like it should be as simple as extending AbstractSafeHtmlCell, then overriding the render method to contain an html constant . Wanted to make sure I'm not leaving out anything. Daniel -- You received this message because yo

GWT 2.1.1 RequestFactory Problem

2010-12-20 Thread Daniel Simons
instead of mypackage.server.domain.Connection. The error I receive is: The domain type mypackage.server.domain.Connection_$$_javassist_1 cannot be sent to the client. Should I implement ServiceLayer to solve this? Or could this be a different problem? Daniel -- You received this message because you

Re: RequestFactory without creating proxies? Anyone else reminded of J2EE early days?

2010-12-14 Thread Daniel Simons
I have a project that utilizes RequestFactory and works in 2.1 but not in 2.1.1. Is there an example out there making use of the 2.1.1 RequestFactory improvements? On Tue, Dec 14, 2010 at 8:05 AM, Thomas Broyer wrote: > > > On Tuesday, December 14, 2010 1:14:30 PM UTC+1, kabram wrote: >> >> We

Nested Activities

2010-12-13 Thread Daniel Simons
s? Thanks, Daniel -- 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...@googlegroups.c

How To Extend Entities For Use In RequestFactory

2010-12-08 Thread Daniel Simons
in the Entity itself. Are there any simple ways around this? Thanks, Daniel -- 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 g

How to prevent CSRF/XSRF when using RequestFactory

2010-11-30 Thread Daniel Cowx
this point I've been sending the session ID within the *payload* of each RPC. Works great. Should I be doing something similar with RequestFactory? Any and all suggestions greatly welcome! Thanks, Daniel -- You received this message because you are subscribed to the Google Groups "Googl

Gwt 2.1 Eclipse Helios

2010-11-27 Thread Daniel Leon
i got the same problem here, eclipse send erros about class paths and whitout the GWT Designer this doesnt happens update the latest beta of GWT designer doesnt solve the problem. =S -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To po

Re: Image Update Memory Leak

2010-11-03 Thread Daniel Kurka
"Cache-Control", "no-cache"); - Daniel Kurka 2010/11/1 hermis > Hello, > > I have written a simple application which fills a FlexTable with a set > of images. There is a timer which updates the URL of each image every > second. The URL points to a Servlet wh

Re: Performance issues with large number of divs

2010-11-03 Thread Daniel Kurka
out which element was clicked, changed or whatever You should also take a look at the Cells introduced with celltable and their Templates... Hope i could give you some pointers. -Daniel Kurka 2010/11/2 Jeff Schwartz > I believe it would be trivial in that you would only need to

Re: Renaming modules

2010-10-27 Thread Daniel Kurka
you dont have to rename the module if you dont like it. renaming is just for convienience - Daniel Kurka 2010/10/27 hezjing > Hi > > I was reading > http://code.google.com/webtoolkit/doc/latest/DevGuideOrganizingProjects.html#DevGuideModuleXml, > and see the following cod

Re: How do I send program generated Images to my users?

2010-10-25 Thread Daniel Kurka
Hi Greg, from my point of view there are to ways of doing this: - Generate the image with a servlet on the fly (return the appropriate mime type and the image) or (if the images are small) - you can encode them using base64 and set them as data in an image url Hope that helps - Daniel Kurka

Re: Development server not loaded on IE when -bindAddress 0.0.0.0

2010-10-25 Thread Daniel Kurka
Does firefox work? -Daniel Kurka 2010/10/23 antichrist > I'm using "-bindAddress 0.0.0.0" argument and using test from IE6,7,8. > > Suddenly I cannot load webpage anymore. Page title is loaded but > that's all. > > And no response on Eclipse

Re: Question that i don't found in yours FAQ's

2010-10-25 Thread Daniel Kurka
If you have some restrictions on your code on the server side (beeing able to run in a 1.4 java enviroment) you can still use java 6 to run gwt. (and you should) just make sure to set your javac to compile with java 1.4 as target... -Daniel Kurka 2010/10/26 Jim Douglas > I have to

Re: update a single widget lead to the whole page refresh?

2010-10-25 Thread Daniel Kurka
have you tried speed tracer to see whats actually going on inside the browser? -Daniel Kurka 2010/10/25 Jason > Yes, It's flex table. But I create the table in initialization and > never change it then. > > I can under when I update the label, it require find the dom elmemen

Implementing a DevMode Plugin

2010-10-16 Thread Daniel Kurka
I was wondering if there is any documentation available on implementing a dev mode plugin for other browsers. I was able to find the design document for OOPHM: http://code.google.com/p/google-web-toolkit/wiki/DesignOOPHM Any more pointers? -Daniel Kurka -- You received this message because

Re: How to hot fix a common GWT widget without recompiling the GWT module?

2010-10-15 Thread Daniel
Hi Michael, Thanks for your reply. Can you explain the super-source option? Thanks Daniel On Oct 14, 1:55 pm, mmoossen wrote: > hi Daniel! > > if the fix affects only non-private members, the best is to extend the > widget by your own. > if not possible, then one possibility i

How to hot fix a common GWT widget without recompiling the GWT module?

2010-10-14 Thread Daniel
to be compiled with this new fix. I wonder is there a way to do this? I am using GWT v2.0.1. Our product is already deployed on the customer site & just want to hot fix their environment. I appreciate and thank you for your responses. Daniel -- You received this message because you

Re: Client side caching of the .nocache,js and other included .js and .css files

2010-10-11 Thread Daniel Kurka
ot without recompiling the app to invalidate the old files) -Daniel Kurka 2010/10/9 PeterT > > We have a project.nocache.js file that included other .js and .css > files. The generated project has a long GUID like name which changes > each compilation, so that file is correctly loaded, bu

Re: newbie - GWT.getHostPageBaseURL() + "greetingService?input=" + string);

2010-10-10 Thread Daniel Kurka
Hello Ray, if you are wondering what url the gwt async uses, you can see this in firebug (network tab). I think you are missing your module in the url. Dont use GWT.getHostPageBaseURL() use GWT.getModuleBaseURL() and you should be fine. -Daniel Kurka 2010/10/11 Ray Tayek > At 03:47 PM

Re: Development view Open / Open With don't work

2010-10-10 Thread Daniel Kurka
which version of gwt are you running? 2010/10/11 Rud > I am using the GWT plugin in Eclipse but seeing different behariors on > two machines. On one machine after running my app the development view > "open / open with" menu brings up the application in a browser. On the > other machine it won

Re: Invoke a GWT Widget from JSP Page

2010-10-07 Thread Daniel Kurka
Hi Salil, you can reserve some space in your jsp page for the gwt widget: And in GWT you can add your widget to the div by doing: RootPanel.get("wherethegwtwidgetgoes").add(widget); hope that helps 2010/10/6 Salil > Hi, > > I have a JSP page which consists of a textarea and few buttons

Re: Calling java from external javascript

2010-10-05 Thread Daniel Kurka
if you are in javascript its not $wnd its just window :) 2010/10/5 Boris Lenzinger > Sorry for the javascript : there is a mistake : variable name is not > buttonnode but button at return step of the method... > Anyway the problem still stands ;-) > > Boris > > 2010/10/5 Boris Lenzinger > >> Hi

Re: Where can I find documentation to GWT MVP comming with version 2.1

2010-09-30 Thread Daniel
I just wrote a blog post about gwt 2.1 m3 mvp, containing a small example how to use activities and activitiesmappers: http://blog.daniel-kurka.de/2010/09/testdriving-gwt-mvp-from-gwt-21-m3-part.html On 28 Sep., 21:25, Kasper Hansen wrote: > Sounds good !! Can you provide a link in this thread

Re: Explanation of the code server in developer mode

2010-09-29 Thread Daniel Kurka
Hi Paul, heres the link to the design document of the out of process hosted mode: http://code.google.com/p/google-web-toolkit/wiki/DesignOOPHM - Daniel 2010/9/29 Paul Michael Reilly > I now understand that the code server runs in a JVM and communicates > with the gwt plugin running in

Re: GWT Dev mode Changes in the Java class is not reflecting when refresh the browser

2010-09-29 Thread Daniel Kurka
What you are describing can be caused by many things, so I will try to take a lucky guess? Do you have the gwt.codesrv parameter in the url? (otherwise you are not using the out of process hosted mode, you are just looking at the compiled app) Changes on the server side are only visible after yo

Re: 2.1 Documentation

2010-09-29 Thread Daniel Kurka
I'm sorry about the blog not being in english :) Thanks for the hint on SimplePanel. I`m gonna keep this in mind once m4 arrives. 2010/9/30 Thomas Broyer > > > On 30 sep, 00:18, Daniel Kurka wrote: > > I just started to take a look on GWT 2.1m3 and MVP and made a small bl

Re: 2.1 Documentation

2010-09-29 Thread Daniel Kurka
I just started to take a look on GWT 2.1m3 and MVP and made a small blog post about it. Maybe this will help? http://blog.daniel-kurka.de/2010/09/testdriving-gwt-mvp-from-gwt-21-m3-part.html 2010/9/29 Aldo > My only question is: when will GWT 2.1 M4 be available? And when will > it be released

Re: Newbie qn: GWT.xml inherits vs Build path

2010-09-29 Thread Daniel Kurka
GWT Compiler does not use the whole java classpath for the sources that will be translated to javascript. (There would be a lot of not translatable classes). So by using the inherit tag you tell the compiler which classes exactly need to be translated to javascript - Daniel 2010/9/29 Abdullah

Re: MVP pattern and dynamic widgets

2010-09-20 Thread daniel
Maybe you can give the Tags (currentUser.getTags()) to the view, so that the view is responsible for creating checkboxes or whatever, so the presenter does not have to deal with widgets. the view can map each Tab to the created Checkbox (to avoid the for- loop) und call a method like tagChanged(Tag

Re: UiBinder CSS class renaming

2010-09-14 Thread daniel
http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideUiBinder.html#Programmatic_access On 13 Sep., 05:53, "hendrix.jason" wrote: > I'm using uibinder where i have defined a

Re: PagingScrollTable Auto Resize

2010-09-10 Thread daniel
query the container widget's size in a deferred command (http:// code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/ google/gwt/user/client/DeferredCommand.java?r=1061) so the browser has time to calculate the containers size before you ask for it On 10 Sep., 18:06, Maurice wro

Re: UiBinder: ClientBundle with ImageResource & . How?

2010-09-10 Thread daniel brelovsky
i think the 'resource' attribute is ignored u can use the 'src'-attribute and use the relative path to the image! but there seems to be a problem when the image is in a parent path is in a parent directory (relative to the ui.xml). in this case u can write src='../image.png' but this fails when a

The Compiler is Compiling Only One Permutation

2010-09-09 Thread Daniel Simons
I am trying to compile all 5 permutation for my GWT App. For some reason it is only compiling 1. I've tried with the following line in my .gwt.xml and without the line. I'm using Eclipse Galileo with Eclipse Plugin 3.5 Thanks, Daniel -- You received this message because you are

Re: Google's commitment to GWT

2010-08-20 Thread Daniel Jue
Google would not drop support until they had something better to replace it, and a migration plan for the GWT developers. From a rational point of view, they would choose this path and keep developers' mindshare rather than loose it to some other platform/company. They might not be making money o

Re: JS works in html file but not in httpServlet

2010-08-18 Thread Luis Daniel Mesa Velasquez
Can you explain what you mean by "running it from a servlet"? do you mean you have something like: out.println("Main/Main.nocache.js"); or what are you "running"? On Aug 14, 3:02 pm, poe wrote: > Hi everybody, > > i've got a problem. When I include my main,nocache.js in an html file > everythin

<    1   2   3   4   5   6   >