Re: RequestFactory Problem: HTTP ERROR 500 /gwtRequest

2011-05-17 Thread Marcin Misiewicz
Did you switched to the new RequestFactoryServlet in the web,xml file. When I switched to the 2.3 version I got similar error. I've changed web.xml and now it works. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: RequestFactory Entity name

2011-04-01 Thread Marcin Misiewicz
I guess, you should use debugger and see whats going on under the hood. In the spare time I will try to reproduce the error. -- 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: RequestFactory with parameter

2011-03-31 Thread Marcin Misiewicz
I'm not sure, but I guess it is always required. -- 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

Few problems with creating/ updating entities with requestfactory and appengine

2011-03-31 Thread Marcin Misiewicz
Hi i have a few problems with updating/creating entities. My model is very simple : @Entity Company { some fields . @Embedded Address } @Embeddable Addres { . some fileds ... } Of course AddressProxy is subtype of the ValueProxy. I'm running my sample in

Re: Few problems with creating/ updating entities with requestfactory and appengine

2011-03-31 Thread Marcin Misiewicz
Hi Juan 1. I added @Basic annotation with fetch type eager and it works. Till now I was pretty sure that embedded object are always fetched and I thought that this problem is related to the appengine. 2. Here is my persistence.xml file. Do you suggest that I should use transactions to get

Re: Few problems with creating/ updating entities with requestfactory and appengine

2011-03-31 Thread Marcin Misiewicz
Thanks Juan, it works. That's what happen when you are using container managed transactions for the long time. I simply forgot about transactions. -- 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: EditorDriver.setViolations in 2.3 release branch doesn't work as expected

2011-03-16 Thread Marcin Misiewicz
I post the new issue regarding to editorDriver.setViolations http://code.google.com/p/google-web-toolkit/issues/detail?id=6153 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

EditorDriver.setViolations in 2.3 release branch doesn't work as expected

2011-03-15 Thread Marcin Misiewicz
Hi Lately I have a problem with calling isChanged on RequestContext here is the link to discussion on that topic https://groups.google.com/d/topic/google-web-toolkit/HznAkg94WUc/discussion Thomas has suggested that my problems can be solved by using editorDriver.isDirty introduced in gwt 2.3.

Is the order of proxy creation matters ?

2011-03-11 Thread Marcin Misiewicz
In my project I have Company entity with an embedded Address object. Object structure is almost the same as it is found in the DynaTableRF example. On the client side CompanyProxy extends EntityProxy, and AddressProxy extends ValueProxy. I have notice that when I create AddressProxy before

Re: Is the order of proxy creation matters ?

2011-03-11 Thread Marcin Misiewicz
Thank you for the very quick response. I'll keep in mind to create EntityProxy before creation of the nested ValueProxies, until 2.3 version will not be available. But I guess the second part of my post is not related to this issue ? Why requestContext.isChanged() returns true for the newly

Using browser specific selectors in CssResource

2011-01-13 Thread Marcin Misiewicz
Hi Is it possible to use browser specific selectors like I used in this following statement in the CssResource's css file : button::-moz-focus-inner, button:focus::-moz-focus-inner { border: 0; padding: 0; } The compiler is stripping this declaration from the result. Is it possible to tell

Using PopupPanel in UIBinder

2010-12-20 Thread Marcin Misiewicz
Hi I'm trying to use PopupPanel declared in uibinder template. Template looks like this : !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:style

Re: Using PopupPanel in UIBinder

2010-12-20 Thread Marcin Misiewicz
subhrajyo...@gmail.com wrote:  public SamplePopup() {                logger.fine(Creating SamplePopup);               * add(uiBinder.createAndBindUi(this));*        } u have to add the widget to the panel. Thanks, Subhro. On Mon, Dec 20, 2010 at 8:30 PM, Marcin Misiewicz misq

Re: Multiple Windows like a desktop

2010-12-07 Thread Marcin Misiewicz
You can take a look at the SmartGWT or Ext GWT. Both of them allows you to do that but you must realize that SmartGWT is just the wrapper around javascript library. Ext GWT provide native gwt widgets but it's bit behind the current gwt release its still stucks in the era before uibinder. The next

How do you use TabLayoutPanels with MVP ?

2010-12-06 Thread Marcin Misiewicz
Hi I'm wondering what is the best practice of using mvp and TabLayoutPanel with the following layout of the page. The page layout is master/details. On top it displays some properties of the model and on the bottom in the tabs it shows some history data related to that model object. I guess its

Re: Customizing CSS Default GWT Widgets with CSSResource

2010-12-02 Thread Marcin Misiewicz
Right know I'm customizing default gwt widgets. As a starting point I took the standard theme, I copied the standard.css file from standard theme and then declared this in my ThemeBundle like this : @Source(standard.css) CssResource getLegacyCssResource(); Then I have added

Re: Is it possible to pass the value @def to the literal function in CssResource

2010-12-01 Thread Marcin Misiewicz
I found the solution. It is possible to mix literal and @def in the same ccs property so this working fine : background: literal(-webkit-gradient(linear, left top, left bottom, from() buttonGradientStartColor literal(), to() buttonGradientEndColor literal())); On Nov 30, 5:32 pm, Marcin

Is it possible to pass the value @def to the literal function in CssResource

2010-11-30 Thread Marcin Misiewicz
Hi In my theme I want to use css3 gradients. Since gradients are not the part of the standard yet I have to use wrap them in the literal function like in the example (for webkit browsers) below : background: literal(-webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EDEDED))); It

Re: How to override CellTable css

2010-11-28 Thread Marcin Misiewicz
I guess, that you are also passing CellTableResource instance to the constructor of the CellTable. Othwerwise you will stiil use the default styles. On Nov 28, 9:04 am, savilak savi...@gmail.com wrote: Hi Manstis, use the code below to do it. 1) Extend CellTable.Resources

Re: best practice for handling CSS themes

2010-11-26 Thread Marcin Misiewicz
I really like your solution. Thank you for sharing your solutions. But I wonder how do you deal with the new gwt widgets which support CssResource's. I'm not sure if your solutions will be working for example with CellBrowser or SimplePager. They come with bundled default Resources and they inject

Re: design pattern for common functionality between Activities

2010-11-19 Thread Marcin Misiewicz
And you are definitely right. On Nov 19, 8:05 pm, koma k...@koma.be wrote: How I understand things, a display region is a dynamic part of a webpage; Depending on the place you're at, a display region is populated with a specific activity. A activity manager is the manager of a display

Re: All I Want for Christmas is a powerful Widget Library from Google !

2010-11-16 Thread Marcin Misiewicz
+1 On Nov 15, 11:05 pm, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: +1 (Isn't there a enhancement request for this?) Please make it not only richer, but also sleeker looking. I 3 Google but I think the design/look quite often lacks heavily behind the service itself, YouTube being one

Re: GWT 2.1 hellomvp using GIN

2010-10-20 Thread Marcin Misiewicz
Well I'm also very interested in some guidelines of how to use gin with activities and places. On Oct 20, 11:42 am, Sebastian Beigel sebast...@beigel.de wrote: Hi, I'm looking at 2.1 (RC1) for the first time right now and I try to refactor the hellomvp sample to use GIN. Unfortunately, I

Re: keyboard shortcuts with CTRL

2010-10-04 Thread Marcin Misiewicz
(); } }); } } }); CTRL+l oraz CTRL+L - opens the window with log messages. On 1 Paź, 00:35, Marcin Misiewicz misq...@gmail.com wrote: I'm also interested in that topic. Does anybody has some experience with keyboard shortcuts

Re: keyboard shortcuts with CTRL

2010-09-30 Thread Marcin Misiewicz
I'm also interested in that topic. Does anybody has some experience with keyboard shortcuts in gwt. I'd like to have at least one application wide shortcut for opening a log panel and a few shortcuts dependent of what panel actually has focus on. On 1 Wrz, 19:13, levier

Deserialization of the JSON to JAXB annotated JPA pojo's on the client side.

2010-08-05 Thread Marcin Misiewicz
suggestions or experience in that matter ? Regards Marcin Misiewicz -- 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