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

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 TestT { ListDataProviderT ldp = new ListDataProviderT(); public void setItems(ListT list){ for(T t :list){

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 ListT getItems(){ return new ArrayListT(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 list

Re: Debugging is terribly slow

2012-06-03 Thread Ramon Salla
Quite amazing. https://www.youtube.com/watch?feature=player_embeddedv=-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 GWT

Object 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 = object ... param name=x value=y/ param name=z value = o ... /object. The activeX object is working nice but I need to use the wmode parameter in

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

Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Ramon Salla
and the 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.google.com/d

Object Tag with wmode parameter

2011-06-09 Thread Ramon Salla
Hi, I am using HTML widget to get an object params.../ /object with 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

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

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 email

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

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 email

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. result /result 2.- Build a CellTable with

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. - result - images - group

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

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:43, Ramon

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)

Re: Handling clicks on CellWidgets

2011-01-14 Thread Ramon Salla
is a must to layout cells while no uibinder is supported. On 7 Gen, 12:05, Ramon Salla rsal...@gmail.com 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 ActionCells in a CompositeCell also worked. I think

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

Re: Handling clicks on CellWidgets

2011-01-07 Thread Ramon Salla
will make its way to the next version. Thanks again, Ramon Salla Rovira On 3 Gen, 22:35, Thomas Broyer t.bro...@gmail.com 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 http

Handling clicks on CellWidgets

2011-01-03 Thread Ramon Salla
Am I forced to use celltable with different cells for each column. Question 4 How do you managed to distinguish cellclicks if there is only one handler per row in a celltable? I know the questions are not very concise, sorry. Ramon Salla Rovira -- You received this message because you