Re: How to create event on safe html

2013-09-27 Thread Thomas Broyer
I just answered on StackOverflow: http://stackoverflow.com/a/19045668/116472 On Friday, September 27, 2013 7:34:16 AM UTC+2, Bhumika Thaker wrote: Hi, How to create event on safe html. As I want to do filtering for column in celltable. So I added search box at header in table. I want

Re: How to create event on safe html

2013-09-27 Thread Bhumika Thaker
Hi Thomas, Thanks, But I want to have two feature that used input, select so I have to implement *TextInputCell* and *SelectionCell*on header. right? how can I achieve both? I could not found any way that's why I am looking for Dom element. Thanks, Bhumika -- You received this message

how to align composite cell element vertically

2013-09-27 Thread Bhumika Thaker
Hi All, I want to show *CompositeCell 's * cells vertically as It's coming horizontally. How can I do it? Thanks, Bhumiak. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from

Re: GWT RPC and DevMode

2013-09-27 Thread stuckagain
I will be responding to myself, It looks like the rubber duck approach really works. If figured it out just after writing down my question :-S. I just had to compare the contents of the .gwt.rpc files from the deployed ear/war and what DevMode was creating in the work directory. There I found

Re: how to align composite cell element vertically

2013-09-27 Thread Thomas Broyer
The default implementation of render(Context,Element,C) in CompositeCell is: ```java for (HasCellC, ? hasCell : hasCells) { render(context, value, sb, hasCell); } ``` You can easily override it with code that wraps each call to render(Context,C,SafeHtmlBuilder,HasCell) into a div,

Re: how to align composite cell element vertically

2013-09-27 Thread Bhumika Thaker
Thanks :) Yes, I have implemented it and resolved this issue. @Override public void render(com.google.gwt.cell.client.Cell.Context context, SearchItem value, SafeHtmlBuilder sb) { for (HasCellSearchItem, ? hasCell : searchCells) { render(context, value, sb, hasCell); } } protected X

Client Logging Question

2013-09-27 Thread Timothy Spear
I think I am missing a few simple things, and even Google Search has failed me this time. :D The following covers some of the concepts fairly well: http://www.gwtproject.org/doc/latest/DevGuideLogging.html However a few simple questions: 1. I cannot find the actuating logging example project.

Re: GWT 2.5.1 now available

2013-09-27 Thread Ed
When will release 2.6 will come out? (4 nov?) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to

Re: jsni - overlay types - js arrays Java API

2013-09-27 Thread Greg
This will now work in GWT 2.2 See: https://code.google.com/p/google-web-toolkit/issues/detail?id=6594 Workaround provided there works. On Monday, December 24, 2012 3:22:11 AM UTC+1, Sebastián Gurin wrote: Thank you Thomas for your reply, I learned new things. Didn't know about if (

Re: jsni - overlay types - js arrays Java API

2013-09-27 Thread Greg
This will NOT work in GWT 2.2 See: https://code.google.com/p/google-web-toolkit/issues/detail?id=6594 Workaround provided there works. On Monday, December 24, 2012 3:22:11 AM UTC+1, Sebastián Gurin wrote: Thank you Thomas for your reply, I learned new things. Didn't know about if (

Client Logging Question

2013-09-27 Thread Timothy Spear
I think I am missing a few simple things, and even Google Search has failed me this time. :D The following covers some of the concepts fairly well: http://www.gwtproject.org/doc/latest/DevGuideLogging.html However a few simple questions: 1. I cannot find the actuating logging example project.

Best way to Emulate Mobile Tabs using GWT

2013-09-27 Thread Paul Mazzuca
Many mobile applications have Tabs or buttons on the bottom of the View to move from different areas of the application. Can this be emulated in pure GWT, and if so how would you recommend it? My initial thought was to use a DockLayoutPanel with the south region containing a grid of buttons.

Re: Client Logging Question

2013-09-27 Thread Jens
The logging example comes with the GWT SDK: https://gwt.googlesource.com/gwt/+/master/samples/ If you use Eclipse and the GWT update site the SDK should be installed in eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.5.1/gwt-2.5.1 If you want runtime log settings you must keep logging

Re: Problem with SuggextBox as table cell

2013-09-27 Thread Timothy Gonzalez
jorge vasquez jorgevasquezang@... writes: Hi Christian Pelster ,I watched your code , because I need implement some similar and I could solved your problem , you should modify the method updateViewData  some like this:  private String updateViewData(final Context context, final Element

Re: synthesizing sounds in GWT application

2013-09-27 Thread Kevin O'Dwyer
I tried a few different ways to play dynamically generated sound for my emulator. Sound mostly works OK. See JsSound and JsFallbackSound in the below source code tree. http://sourceforge.net/p/jsdosbox/code/HEAD/tree/src/src2/net/sourceforge/jsdosbox/client/replaced/ On Friday, 27 September

Async calls trigger by itself automatically after one hour

2013-09-27 Thread aruna
Hi, I am working on a project where the Async RPC call made takes more than a hour to get the result. After exactly one hour the same async call is triggered automatically by itself. Any idea on how to solve this Aruna -- You received this message because you are subscribed to the Google

[gwt-contrib] Re: FYI: Gerrit/Jenkins acting funny

2013-09-27 Thread Thomas Broyer
On Wednesday, September 18, 2013 1:13:46 AM UTC+2, Matthew Dempsky wrote: There seems to be some issue with googlesource.com where search queries are giving erroneous results, which is causing Jenkins to fail to notice patches that should be presubmitted. I've contacted the googlesource

Re: [gwt-contrib] Re: FYI: Gerrit/Jenkins acting funny

2013-09-27 Thread Matthew Dempsky
On Fri, Sep 27, 2013 at 3:30 AM, Thomas Broyer t.bro...@gmail.com wrote: Either it's Gerrit or you Jenkins trigger script, but it really looks like my CodeReview+2 labels don't trigger a build in Jenkins (it's not the first time it happens): https://gwt-review.googlesource.com/4710 Hm,

[gwt-contrib] meeting notes for September 25

2013-09-27 Thread Brian Slesinsky
September 25, 2013 - Hangout on air today - Matt shared the GWT 2.6 release plan (dochttps://docs.google.com/a/google.com/document/d/1ZdMwcTjc4rkWg6nntCY1BDB1xI2PHPwaCnTYw-9uAKE/edit ) - feature-complete November 4th. Release on December 2. - Bhaskar: which