[gwt-contrib] Re: Issue 7038: CompositeEditor and ListEditor optimizations (issue1664803)

2012-05-18 Thread branflake2267
For me, I'm more concerned about setting it null. Not sure this would work, but if setValue(null) create an empty list to use and don't even worry about NPE checks. Shoot if set null and returns empty not such a bad side effect. On 2012/05/18 00:04:26, tbroyer wrote: On 2012/05/17 21:38:03,

[gwt-contrib] Re: Allow enablement and titles to be set from DatePicker (issue1702804)

2012-05-13 Thread branflake2267
On 2012/05/12 15:09:03, Patrick Tucker wrote: Nice work! http://gwt-code-reviews.appspot.com/1702804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

GWT Designer and Widget States

2010-11-06 Thread branflake2267
I'd like to suggest the widget Designer add a way to design widget states. Right now you design in one state. If you like at the flash development, it can control the widget or app in different states according to time and/or events. This would be a fantastic feature(s) to add to GWT Designer. I

Example GWT application

2010-09-27 Thread branflake2267
I made this to complain to the FCC about Android bloatware: http://tellthefcc.appspot.com/ http://gwt-examples.googlecode.com Thanks for looking, Brandon -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: blobstore not allowing access to a file 1 mb with one api call + zip files

2010-09-06 Thread branflake2267
You'll need to start a task to do the job, but tasks are limited to 30s. In this case you use the mapreduce api, to read the entire blob you upload and do what you need. Here is my Demo GWT project for Blobstore upload: http://demofileuploadgae.appspot.com/ Here is code for the demo:

Re: AccessControlExeption: Access Denied

2010-09-06 Thread branflake2267
Here is what I did to upload: http://demofileuploadgae.appspot.com/ - demo http://code.google.com/p/gwt-examples/source/browse/#svn/trunk/DemoUpload/src/org/gonevertical/upload/server%3Fstate%3Dclosed - Code On Aug 2, 5:07 pm, GKotta guruko...@gmail.com wrote: Hi Tom, thanks for your answer. I

Re: I need help custom querying blobs. Can anybody get JDO BlobInfo query to to work?

2010-08-30 Thread branflake2267
datastore = DatastoreServiceFactory.getDatastoreService(); PreparedQuery pq = datastore.prepare(new Query(__BlobInfo__)); int ce = pq.countEntities(); System.out.println(countEntities: + ce); } On Aug 29, 4:08 pm, branflake2267 branflake2...@gmail.com wrote: Can anybody get

I need help custom querying blobs. Can anybody get JDO BlobInfo query to to work?

2010-08-29 Thread branflake2267
Can anybody get a custom BlobInfo JDO query to work? I can't figure out how to do a custom query on the Blobs? http://code.google.com/p/gwt-examples/source/browse/trunk/DemoUpload/src/org/gonevertical/upload/server/BlobInfoJdo.java This GQL works to query blobs: SELECT * FROM __BlobInfo__

Re: Event chaining

2010-08-29 Thread branflake2267
With out seeing your code I'm not entirely sure, but I would suggest checking to see if you have added a click handler to the widget you want to observe clicks on. I have some source to look at if your interested: My click handlers are here: http://gwtexample.appspot.com/ and source for it:

Re: War takes more space

2010-08-29 Thread branflake2267
Hi, I would suggest replacing all the files every time, at least thats what I do. GWT sdk will automatically build you a war, unless your using the eclipse plugin, you'll need to zip up the war directory contents and rename the war to the path you like. The things that do need to be replaced in

Demo GWT Datetime converter hosted on GAE

2010-05-04 Thread branflake2267
I created a new GWT Datetime convert hosted on Google app engine. You can test Javascript and Unix time stamps. http://demogwtdatetimegae.appspot.com/ I used two projects and a third is on its way to build the gadget.

Re: Insert javascript in GWT

2010-05-04 Thread branflake2267
If you need to call it as soon as the app loads, I would include it in the project.gwt.xml file. Otherwise you can include it in the header of the page, but you'll have to wait for it to load to call the functions. Like this:

My First GWT IGoogle Gadget, What do you think?

2010-04-25 Thread branflake2267
I finally figured out how to build my first GWT Gadget. I found it wasn't as difficult as I once thought. I'm really excited about the this potential. I looked at the GWT Gadget API source and there putting some time into new development, which excites me. I built a basic and more complex gadgets

Re: super-source with Eclipse

2010-04-25 Thread branflake2267
HI David, It appears that your source isn't in the translatable directories that would translate to javascript. Anything in project.client.* should translate into javascript. There should be two packages tld.domain.client.* and tld.domain.server. You can use the webApCreator to setup a project

Re: GWT MVP architecture redirect link page with URL parameters passing

2010-04-25 Thread branflake2267
Hi Mahmoud, Yes, this is very possible to do. Have any widget add a history handler, and watch for any history change event, and then fire the widget state accordingly as you see fit. I like doing it this way. You can pass any number of parameters in to change the widgets/app state.

Re: Free, open, and decentralized social networking.. in GWT !

2010-04-25 Thread branflake2267
Very cool and impressive project. I can see you spent some time on that project good job. Brandon Donnelson http://gwt-examples.googlecode.com On Apr 23, 8:28 am, @eschnou laurent.eschena...@gmail.com wrote: Hi everyone, Just a short post to let you know that we have just released the web

Re: GWT Developer plugin for Chrome on OS X (mac)

2010-04-25 Thread branflake2267
I vote for a MacOSX Chrome Plugin too, this would be so nice to have! Brandon Donnelson http://gwt-examples.googlecode.com On Apr 23, 8:15 am, Jim Adkins ade...@gmail.com wrote: Is there anyone out there who can give the development community a status update as to when we might see a GWT

Re: GWT + app engine: how do I avoid double-work?

2010-04-25 Thread branflake2267
I have used JDO data storage with GAE and also stored that to MySql. Although changing the GAE libraries out for Mysql JDO Libraries takes a little bit of effort. Here are some of my JDO classes, which I convert into DataObjects to pass to GWT client side. Its not to hard to write JDO into data

Re: Defining a global function in JSNI?

2010-04-22 Thread branflake2267
This is what I did to register a JSNI function. http://code.google.com/p/gwt-examples/wiki/project_JSNI http://demogwtjsni.appspot.com/ - demo of it public static native void registerJsni(ToolTipWidget ttw) /*-{ $wnd.showTooltip_id = function(elementId, html) {

Re: History.newItem() -- Documentation Suggestion

2010-04-22 Thread branflake2267
History.newItem(x) changes the querystring #[anchor] parameter. I use a change handler and then I fire and event. private void fireChange() { NativeEvent nativeEvent = Document.get().createChangeEvent(); ChangeEvent.fireNativeEvent(nativeEvent, this); }

Re: Floating label

2010-04-22 Thread branflake2267
I use an absolute panel. Set it to the body, Rootpanel.get().add(absolultePanel); then set its visibility false. When you need it set its x and y and set visilbity to true and to the position you need it at. You can get the position by referencing the parent element that creates the event. I do

Re: GWT Module not loaded on app engine

2010-04-22 Thread branflake2267
If this is what the debugger starts as: http://127.0.0.1:/DemoJSNI.html?gwt.codesvr=127.0.0.1:9997 then http://127.0.0.1:/MyPage.jsp is the location of it. you don't need the gwt.cod... to get it to run. You can change the start page in web.xml Hope that helps, Brandon On Apr 21, 9:32 

In Need of Everett, WA, GWT Coder

2009-08-26 Thread branflake2267
Hi GWT folks, I am looking for someone to hire that has gwt, java, mysql experience for the company I work at in Everett, WA. We are a contracting company that work for large corporations. If anybody is interested please get in touch with me. Brandon Donnelson branflake2...@gmail.com

Re: Add external java project to GWT project in Eclipse

2009-07-28 Thread branflake2267
Hi Martin, On including more than one project source into your gwt project, can you tell me what you did to get two projects to work together in GWT. I have been trying over and over to combine two projects up for some time, and have not been able to do it. Thanks, Brandon On Jul 21, 3:16 am,

Compiling Gadget Linker Error - erros on gadget.xml - Where's it get defined?

2009-06-07 Thread branflake2267
1.6 gadget api must be different. How is the gadget.xml file get setup or the manifest defined? Gadget: http://code.google.com/p/gwt-examples/source/browse/trunk/FlashCard/src/com/gawkat/flashcard/client/gadget/FlashCard_Gadget.java Compiling module com.gawkat.flashcard.FlashCard Compiling 5

Re: Compiling Gadget Linker Error - erros on gadget.xml - Where's it get defined?

2009-06-07 Thread branflake2267
It seems compiling can work if I added FlashCard.gadget.xml - but I am still not able to run hosted mode. Trying things :) http://code.google.com/p/gwt-examples/source/browse/trunk/FlashCard/src/com/gawkat/flashcard/FlashCard.gadget.xml --~--~-~--~~~---~--~~ You

Re: Compiling Gadget Linker Error - erros on gadget.xml - Where's it get defined?

2009-06-07 Thread branflake2267
That did work, I could compile the gadget by adding FlashCard.gadget.xml, but hosted mode still looking for the artifact gadget.xml. h --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Compiling Gadget Linker Error - erros on gadget.xml - Where's it get defined?

2009-06-07 Thread branflake2267
this is a tmp link while trying to debug. http://8.latest.mathflashcard.appspot.com/flashcard/com.gawkat.flashcard.client.gadget.FlashCard_Gadget.gadget.xml --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Simple Example using event handlers, Google App Engine, Integrated Google Analytics

2009-05-17 Thread branflake2267
This is a simple GWT application using addClickHandler, addChangeHandler and Integrated Google Analytics. Demo - http://gwtexample.appspot.com/ - This application demo is deployed on the Google App Engine. SVN Source -

Social Collaboration Through Application State Reference

2009-05-17 Thread branflake2267
My beginning thoughts about Collaboration through links: http://codintips.blogspot.com/2009/05/social-collaboration-through.html The question is, whats the best way to reference the entire applications current state through a link? Of course, putting all the parameters into the link is the

Re: How can I combine 2 projects into one with gwt 1.6+?

2009-04-06 Thread branflake2267
. Although I may have misundertstood the purposes for goals 1 2. Hope that helps, -Sumit Chandel On Sun, Mar 22, 2009 at 4:01 PM, branflake2267 branflake2...@gmail.comwrote: Hi Sumit Chandel, Thanks for taking the time to answer my questions! The Ant setup is heading in the right

Re: Best Practices for managing GWT 1.6 based Applications, Projects and Modules?

2009-03-22 Thread branflake2267
Hi, I like what I see with the improvements of 1.6! I am building a enterprise application at a major telecom company which is getting used, in which I am fully utilizing gwt. I also have built GoneVertical.com application. This is a great question. I have been experimenting with including my

Re: How can I combine 2 projects into one with gwt 1.6+?

2009-03-22 Thread branflake2267
}/       /classpath       jvmarg value=-Xmx256M/       arg value=com.gawkat.gwt.Test/     /java   /target This would be in addition to other path elements you would need to define to build your project. Hope that helps, -Sumit Chandel On Wed, Mar 4, 2009 at 8:23 AM, branflake2267 branflake2

Re: How can I combine 2 projects into one with gwt 1.6+?

2009-03-04 Thread branflake2267
will build the projects. So How can I get Ant to Compile it? Run As Build.xml in com.gawkat.gwt.Test : Buildfile: /home/branflake2267/workspace2/Test/build.xml libs: javac: gwtc: [java] Loading module 'com.gawkat.gwt.Test' [java]Loading inherited module 'com.gawkat.gwt.Apple' [java

How can I combine 2 projects into one with gwt 1.6+?

2009-03-03 Thread branflake2267
Could anybody help me figure out how to combine 2 project into one with gwt 1.6+ and build them in the War folder using the ant system that is already configured? 1. I figured out how to add the included project into the class path in ecplise to work in hosted mode. - Buildpath classpath

Re: GWT 1.6 M1 - webAppCreator - having creation problems?

2009-02-25 Thread branflake2267
Run the external tools, ant to compile the project to get it to work. right click on build.xml run ant external tool On Feb 22, 11:44 am, branflake2267 branflake2...@gmail.com wrote: I found running webAppCreator like this creates the proper directory structure: ./webAppCreator -out /home

Application Navigation and Interaction Visualization

2008-12-27 Thread branflake2267
I have made up a image for visualization of the gwt application event interaction and navigation. This helped me better understand event interaction and url navigation so I could create core navigation strategy for my gwt applications. http://code.google.com/p/gwt-examples/wiki/Navigation

MySQL RPC Example

2008-09-07 Thread branflake2267
Thought I would post my MySQL example. http://gawkat.com/MySQLConn/ - GWT MySQL demo getting data http://code.google.com/p/gwt-examples/wiki/project_MySQLConn - MySQL code snippets Download the Eclipse project via the SVN. I made an example widget in which a widget grabs MySQL data from the