Re: PSA: starting unbundling dependencies from gwt-dev published to Maven Central, could break your build

2014-10-12 Thread Ramon Salla
Adding http://mvnrepository.com/artifact/org.ow2.asm/asm/5.0.3 it worked again. El diumenge 12 d’octubre de 2014 10:35:09 UTC+2, Thomas Broyer va escriure: > > Hi all, > > If you're using 2.7.0-SNAPSHOT, your build might start failing as of today > as we started unbundling dependencies from gw

Re: Java Generics in GWT-RPC

2012-12-19 Thread Ramon Salla
This change on Test works!! It seems a problem with the ListDataProvider object. public List getItems(){ return new ArrayList(ldp.getList());} El dimecres 19 de desembre de 2012 10:35:14 UTC+1, Ramon Salla va escriure: > > We are having a SerializationException error when sending a l

Java Generics in GWT-RPC

2012-12-19 Thread Ramon Salla
We are having a SerializationException error when sending a list of objects using RPC and Java Generics. I'm creating this widget to show the error: public class Test { ListDataProvider ldp = new ListDataProvider(); public void setItems(List list){ for(T t :list){

Re: Debugging is terribly slow

2012-06-03 Thread Ramon Salla
Quite amazing. https://www.youtube.com/watch?feature=player_embedded&v=-xJl22Kvgjg#! El dimecres 30 de maig de 2012 16:50:03 UTC+2, Thomas Broyer va escriure: > > > > On Wednesday, May 30, 2012 3:59:26 PM UTC+2, Dimitrijević Ivan wrote: >> >> It is sad but FF has much better performances when GW

and wmode

2011-07-12 Thread Ramon Salla
Hi, I use a FlowPanel and the method getElement().setInnerHtml(String html) to use an activex object custom video player like this: String object = " ... ". The activeX object is working nice but I need to use the wmode parameter in order to let a DIV to layout on top of the player. It seem

Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Ramon Salla
other with shared and client code. Be careful with this because of SOP and GWT policyFiles! they are tricky. Ramon Salla -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.go

Re: building custom event differently to avoid boiler plate coding?

2011-06-21 Thread Ramon Salla
+1 to this! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/SAqQBT-i0iAJ. To post to this group, send email to google-web-toolkit@googlegroups.c

Object Tag with wmode parameter

2011-06-09 Thread Ramon Salla
Hi, I am using HTML widget to get anwith a wmode = transparent param. (we use a custom ActiveX player) But, when inspecting the ouput html code, several params (including wmode) are gone. How can I use it? Thanks. -- You received this message because you are subscribed to the Google Gr

Re: CellTable with only div's?

2011-04-12 Thread Ramon Salla
That is true. We are avoiding Vertical/HorizontalPanel. In fact, our idea behind using CellList is for the ability of use float:left (overriding CellList.Style) in even and odd cell styles. We couldn't to this with elements in CellTable because they are TDs (float:left and td are not very good

Re: CellTable with only div's?

2011-04-11 Thread Ramon Salla
Well, I have just realized that CellList is implemented only with divs. So I can create Cells with tables inside (VerticalPanel and so.). Anyway, thankyou! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai

Re: CellTable with only div's?

2011-04-09 Thread Ramon Salla
Hi Ed, Did you manage to extend celltable to work only with divs? can you share the result? I tried it with no luck. Thankyou! -- 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@google

Re: image gallery with celltable or celllist

2011-03-15 Thread Ramon Salla
float:left did the job. Thankyou -- 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+unsubscr...@g

Re: image gallery with celltable or celllist

2011-03-14 Thread Ramon Salla
Any suggestion about how to create an image gallery for hundreds of images? -- 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 emai

image gallery with celltable or celllist

2011-03-13 Thread Ramon Salla
I am wondering how to use CellTable to have a blazing fast image gallery. Le't me explain my idea for a fixed N image column table with hundreds of rows. 1.- Ask to server for a xml/json object with and array of X images grouped by N images per group. - - - -

dynamic image gallery

2011-03-13 Thread Ramon Salla
I am wondering how to use CellTable to have a blazing fast image gallery. Le't me explain my idea for a fixed N image column table with hundreds of rows. 1.- Ask to server for a xml/json object with and array of X images grouped by N images per group. 2.- Build a CellTable with only one colu

Reloading an MVP application throws an error.

2011-01-31 Thread Ramon Salla
Hi I have some trouble when refreshing a MVP application i developer mode. Browser says: GWT Code Server Disconnected Most likely, you closed GWT Development Mode. Or, you might have lost network connectivity. To fix this, try restarting GWT Development Mode and REFRESH this page. And

Impelmenting Service Interface.

2011-01-25 Thread Ramon Salla
Hi, I have some service interfaces implemented in a Rest Server (jersey) and in a GWT client (RequestBuilder). This services are used in Activities(MVP) I don't really want to have both syncronous and asyncronous interfaces. I just want to know if what I am doing is correct. -- Interface SomeSer

Re: New logging api error with firebug lite

2011-01-19 Thread Ramon Salla
I managed to use firebuglite. Changed FireBugLogHandler to use in native JSNI methods: top.console.info(); instead of window.console.info(); I don't really know why it's working because console should be in the same html application as gwt application. Any thought? On 14 Gen, 18

Re: Handling clicks on CellWidgets

2011-01-14 Thread Ramon Salla
alled! using wrapper tables is a must to layout cells while no uibinder is supported. On 7 Gen, 12:05, Ramon Salla wrote: > Thanks Thomas. > > I used the patched ActionCell and ButtonCell from the link you gave me > from the issue and it worked great. > > Using 2 ActionCel

Re: New logging api error with firebug lite

2011-01-14 Thread Ramon Salla
Not working either. Some thoughts: a) with a simple html (no gwt) with a html button with console.info("info") works in firebug lite, chrome console and ie8 console. b) Enabling a simple vanilla gwt application with a jsni method with console.info("info") only works in chrome console. c) Inheri

New logging api error with firebug lite

2011-01-13 Thread Ramon Salla
Hi, I guess I am doing something wrong: Log traces does not appear in Firebug Lite (ie8) but they are appearing in chrome console. Any idea? Ramon. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to goog

Re: Handling clicks on CellWidgets

2011-01-07 Thread Ramon Salla
make its way to the next version. Thanks again, Ramon Salla Rovira On 3 Gen, 22:35, Thomas Broyer wrote: > On Monday, January 3, 2011 3:33:37 PM UTC+1, Ramon Salla wrote: > > > Hi, Happy new year to all! > > > I have some questions regarding cellwidgets. In the showcase >

Handling clicks on CellWidgets

2011-01-03 Thread Ramon Salla
e? I know the questions are not very concise, sorry. Ramon Salla Rovira -- 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,