Re: What GWT designer is for?

2011-10-08 Thread darkflame
For your second question, you basicly make a new composite widget with Designer, and then call it as the contents of a Popup widget. Something like; PopupPanel testPopup = new PopupPanel(); Label testContents = new Label(This popup had a label as its contents, but you can put any widget here!

Is it possible to have a div overlay something, but not catch the clicks (ie, transparent to clicks?)

2011-10-08 Thread darkflame
I suspect the answer here might just be no, but before I do anything too eleborate I thought Id ask. Basicly I have a page with a lot of widgets, imagine if I wanted to tint the screen slightly - for example a 50% blue overlay. Yet I still want the widgets all clickable/interactable as normal. I

convert javascript element into gwt uibinder widget

2011-10-08 Thread Luke
how to convert javascript element into gwt uibinder widget public static CustomWidget wrap(Element element) { assert Document.get().getBody().isOrHasChild(element); CustomWidget customWidget = new CustomWidget(element);

Re: GWT Slider

2011-10-08 Thread darkflame
I made use of this one; http://code.google.com/p/sphgwt/ But I cant remember where I actualy downloaded it now :-/ On Oct 7, 10:21 pm, mkn m.kho...@gmail.com wrote: Hi I need for a project a slider (an important requirement). Therefore I tested the following sliders: -SmartGWT = there is a

Re: GWT Developer Plugin for Firefox 7

2011-10-08 Thread Kees de Kooter
http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi On 08-10-2011 05:44 , Tapas Adhikary wrote: Alan, Can you share the check-in location? -Tapas -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Is it possible to have a div overlay something, but not catch the clicks (ie, transparent to clicks?)

2011-10-08 Thread David Given
On 08/10/11 11:48, darkflame wrote: [...] Basicly I have a page with a lot of widgets, imagine if I wanted to tint the screen slightly - for example a 50% blue overlay. Yet I still want the widgets all clickable/interactable as normal. You can do it by setting pointer-events:none on the

Re: What's a good widget for a small table?

2011-10-08 Thread benneq
A vertical panel containing several horizontal panels SOUNDS pretty straight forward, indeed. BUT: Do it, look at you dom tree, and see that it's totally ugly! It is: A tabletrtd (vertical panel) containing several tabletrtd../tdtd../td/tr/table (1 horizontal panel). On 7 Okt., 22:45, Jeff

Re: One-To-Many RElations Serialization

2011-10-08 Thread Jens
JDO does some byte code enhancement to your entities and JDO will replace java.util.List/ArrayList in entity classes with an implementation provided by JDO, e.g. org.datanucleus.sco.backed.ArrayList. You have the same problem when using Hibernate or any other JPA implementation because they all

JSON issue with GWT

2011-10-08 Thread anand jain
I am making a DTO (JSON fomat). In that if my method returns a List, then I am unable to get that List elements from JS0N string. In JSON string, I can see the elements but unable to fetch them. Can anybody help me? -- You received this message because you are subscribed to the Google Groups

it is not a circular structure

2011-10-08 Thread .Mark
I have a problem that I can not figure out. I have some classes extending the JavaScriptObject class. None of these classes reference each other or reference itself. I only access them in my java code and use the JSON to store these data structures. I get an error of (TypeError): Converting

Re: GWT Slider

2011-10-08 Thread Xi
Try this: http://nivo.dev7studios.com/ very simple to use, and works for all browers... On 7 oct, 22:21, mkn m.kho...@gmail.com wrote: Hi I need for a project a slider (an important requirement). Therefore I tested the following sliders: -SmartGWT = there is a huge overhead. My page has

Re: GPE issue - erasing libs on Run As

2011-10-08 Thread André Salvati
Sudhakar, Let make myself clear. Maven (package goal) is building my app. So, ALL libs that I need are put in WEB-INF/lib (guice and shiro inclusive). When try to Run as.. my application with GPE, just guice and shiro libs disappears. On Oct 7, 3:48 am, Sudhakar Abraham

Re: What's a good widget for a small table?

2011-10-08 Thread Jeffrey Chimene
On 10/8/2011 4:23 AM, benneq wrote: A vertical panel containing several horizontal panels SOUNDS pretty straight forward, indeed. BUT: Do it, look at you dom tree, and see that it's totally ugly! It is: A tabletrtd (vertical panel) containing several tabletrtd../tdtd../td/tr/table (1

Re: GWT Slider

2011-10-08 Thread Julien Dramaix
You can try the slider coming from the Enhance plugin of gwtquery : Examples : http://gwtquery-plugins.googlecode.com/svn/trunk/enhance/demos/Enhance/EnhanceSample.html Documentation : e.google.com/p/gwtquery-plugins/wiki/ EnhancePluginGettingStarted Julien On Oct 7, 10:21 pm, mkn

Re: What's a good widget for a small table?

2011-10-08 Thread Aidan O'Kelly
Well, its creating a table with a table for each row.. to end up with a table structure... If its a statically sized table, you can just write the table structure yourself in UiBinder, and place Widgets/Text in each td. On Sat, Oct 8, 2011 at 2:53 PM, Jeffrey Chimene jchim...@gmail.com wrote:

Re: GWT Slider

2011-10-08 Thread Ed
Make it yourself and use code of projects like Smartgwt and Gxt as example. It's not very difficult: just use an Animation class in gwt and change the css settings.. In this way, I have made dozens of animations myself, including slide north/../south..., fade in/out, etc... The time searching a

Re: What's a good widget for a small table?

2011-10-08 Thread Jeffrey Chimene
On 10/8/2011 7:29 AM, Aidan O'Kelly wrote: Well, its creating a table with a table for each row.. to end up with a table structure... If its a statically sized table, you can just write the table structure yourself in UiBinder, and place Widgets/Text in each td. Is that to to reduce DOM

Re: What's a good widget for a small table?

2011-10-08 Thread Mike Dee
Wouldn't that be a Grid control? Would a Grid control be a little heavy handed in that it seems to be designed to handle widgets in its cells. A property table - or something like that - seems ideal (if it existed). On Oct 8, 8:30 am, Jeffrey Chimene jchim...@gmail.com wrote: On 10/8/2011 7:29

Re: What's a good widget for a small table?

2011-10-08 Thread Strashimir
FlexTable would do the job fine. Regards, Strashimir On Oct 7, 11:38 pm, Mike Dee mdichiapp...@gmail.com wrote: I have small data tables that I'd like to display.  In the widget showcase for DataGrid and CellTable it says they are ideal for large amounts of data. The goal is to display

Re: I made a RequestFactory Demo (w/source)

2011-10-08 Thread Brandon Donnelson
Thank you :) Have a good day, Brandon Donnelson c.gawkat.com On Fri, Oct 7, 2011 at 8:17 PM, Kritic biomechanica...@gmail.com wrote: Wow, RequestFactory already! Great job. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: What's a good widget for a small table?

2011-10-08 Thread Aidan O'Kelly
Well Grid uses a html table to work, yes. The point is when working with UiBinder you can use normal HTML markup to make a widget, so you can do: g:HTMLPanel table tr tdName/tdtdg:TextBox ui:field=nameText/td /tr tr tdPhone/tdtdg:TextBox ui:field=phoneText/td /tr

Instead of Adsense (can't iframe) I've setup a affiliate banner rotator. Example Demo and source inside...

2011-10-08 Thread Brandon Donnelson
Since I can't stick Adsense in an iframe, I've been trying out Plan B, affiliate banner rotator inside an [iframe] with serialized loading so you don't get the same banner each time. Souce demo and More on the wiki (in action here)-

Re: Doubt

2011-10-08 Thread Brandon Donnelson
You won't be able to use JavaCV lib on the client side due to the dependencies it uses. There not available to the browser on all computers. You may be able to use the HTML5 canvas to do some of the image processing. The question is, could you do it in javascript? Brandon Donnelson

Re: Doubt

2011-10-08 Thread Brandon Donnelson
Here are my HTML5 canvas notes. GWT Canvas notes - http://code.google.com/p/gwt-examples/wiki/gwt_hmtl5 GWT canvas scaling demo - http://demogwtcanvas.appspot.com/ DemoIMage Water Marker - http://waterbughack.appspot.com/ GWT Image Water Marker -

Re: What's a good widget for a small table?

2011-10-08 Thread Piro
I would use CellTable even if it says it is ideal for large amount of data. The ideal sentence only says that CellTable has no performance issues with large amount of data because it supports paging (if you need it) and renders only visible cells. If you are not familiar with cell widgets it can

Re: Passing an argument to a View using Activities and Places

2011-10-08 Thread Mike Dee
Jens, Allison, Yes, I see my problem. I even used the GWT MVP View wizard to create the Place, Activity, and View. It very nicely generates template classes - with the FooPlace.setName(). I must have deleted the method in FooPlace at some point. Thanks, Mike On Oct 6, 1:38 pm, Jens

Re: GWT Slider

2011-10-08 Thread Ezequiel Palumbo
That Nivo Slider seems to be very interesting. I'll be giving it a chance. Salud! On 8 oct, 09:46, Xi chenx...@gmail.com wrote: Try this:http://nivo.dev7studios.com/ very simple to use, and works for all browers... On 7 oct, 22:21, mkn m.kho...@gmail.com wrote: Hi I need for a

Re: GWT Slider

2011-10-08 Thread java4africa
I have not tried this but it looks interesting http://www.zackgrossbart.com/hackito/gwt-slider/ I had a look at the incubator project but it had some problems with firefox. The are a lot of open issues on this project - not sure if that a reflection on the complexities of a slider or the project

Re: DataGrid Pagination Problem

2011-10-08 Thread chris
I ran into the same problem today and can tell you that it is most likely the @UiField(provided=true) annotation. I think I see your problem and you are creating another SimplePager in your constructor and it is not being assigned to pager1. This is what is giving you the null pointer exception. I

Unknown tag with, or is not appropriate as a top level element Element

2011-10-08 Thread oerten25
Hello, I couldn't manage to get ui:with working. [ERROR] [com.myproject] - Unknown tag with, or is not appropriate as a top level element Element ui:with field='resource' type='com.myproject.client.resource.MyResource' My ui.xml contents : !DOCTYPE ui:UiBinder SYSTEM

Generics Issue in GWT

2011-10-08 Thread skywalker
I am building an application which uses, GWT (2.4), App Engine (1.5.4), and Objectify (3.0). As my application is evolving, I am adding more domain classes and this is forcing me to write more services, which more or less look like same. for example they all should have code for CRUD operations.

GWT with spring and hibernate

2011-10-08 Thread saneera gunasekara
http://saneera-yapa.blogspot.com/ -- 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

[gwt-contrib] Issue 6855 - Allow RequestFactory to hold a queue of staged request contexts (issue1565804)

2011-10-08 Thread larsenje
Reviewers: rjrjr, bobv, Description: http://code.google.com/p/google-web-toolkit/issues/detail?id=6855 This fix allows you to chain requests together that are created in the same request factory while each request does not need to know about the other. You can chain your requests with the

[gwt-contrib] Re: InProgressRequestContext Factory

2011-10-08 Thread Jeff Larsen
Nevermind, I found the answer in the package-info.java file. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors