Re: GWT 2.5 Cell rendering using uiBinder + image

2012-11-06 Thread Evgeniy Bogdanov
Great! Didn't know that there could be several arguments in render method and all of them are matching parameters with exact the same name in uiBinder file. Actually found in documentation: https://developers.google.com/web-toolkit/doc/latest/DevGuideUiBinder#Rendering_HTML_for_Cells (*UiBinder

Re: GWT 2.5 Cell rendering using uiBinder + image

2012-11-06 Thread Thomas Broyer
On Monday, November 5, 2012 10:38:09 PM UTC+1, Evgeniy Bogdanov wrote: > > On Monday, November 5, 2012 7:14:15 PM UTC+2, Thomas Broyer wrote: > >> >> >> On Monday, November 5, 2012 4:23:56 PM UTC+1, Evgeniy Bogdanov wrote: >>> >>> Hi, >>> Is there an any example - how to add image into Cell with

Re: GWT 2.5 Cell rendering using uiBinder + image

2012-11-05 Thread Evgeniy Bogdanov
On Monday, November 5, 2012 7:14:15 PM UTC+2, Thomas Broyer wrote: > > > On Monday, November 5, 2012 4:23:56 PM UTC+1, Evgeniy Bogdanov wrote: >> >> Hi, >> Is there an any example - how to add image into Cell with UiBinder? >> There is great example in showcase ( >> http://gwt.google.com/samples/S

Re: GWT 2.5 Cell rendering using uiBinder + image

2012-11-05 Thread Evgeniy Bogdanov
Yah, that works. finally I was able to display image in Cell, but I don't think it is optimal way. So the UiBinder file: http://dl.google.com/gwt/DTD/xhtml.ent";> Corresponding Java file: public class ContactCell extends AbstractCell { private static ImageResourceRenderer imag

Re: GWT 2.5 Cell rendering using uiBinder + image

2012-11-05 Thread Thomas Broyer
On Monday, November 5, 2012 4:23:56 PM UTC+1, Evgeniy Bogdanov wrote: > > Hi, > Is there an any example - how to add image into Cell with UiBinder? > There is great example in showcase ( > http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList) but > without uiBinder. > UiBinder file:

GWT 2.5 Cell rendering using uiBinder + image

2012-11-05 Thread Evgeniy Bogdanov
Hi, Is there an any example - how to add image into Cell with UiBinder? There is great example in showcase ( http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList) but without uiBinder. UiBinder file: http://dl.google.com/gwt/DTD/xhtml.ent";> Do not displays