Re: DateBox with months and years only ?

2013-09-18 Thread Celinio Fernandes
Hi, thanks. It is not the DateBox widget that i want to customize but the DatePicker widget. I want the user to be able to pick a month of a year, not a day of a month of a year. In fact, i want exactly this : http://lucianocosta.info/jquery.mtz.monthpicker/ Any clue ? On Tuesday, September 1

DateBox with months and years only ?

2013-09-17 Thread Celinio Fernandes
Hi, can anyone put me in the right direction to implement a composite widget to make a DateBox which displays in a popup only the months and the years ? Without the days. Thanks for helping. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gro

Printing the entire content of a DataGrid or a CellTable ?

2013-06-06 Thread Celinio
Hi, I need to print all the rows that are returned in my DataGrid, not just the rows that are visible on a page (according to the pager size). How do i do that ? The trick with JSNI and the JavaScript print() function will not work in that case. Thanks in advance for helping. -- You received th

Super Dev Mode with GWT 2.5.1-rc1 and Chrome 26.0

2013-04-13 Thread Celinio
Hi, Just want to let you know about my latest post on my blog where i try to explain quickly how to run the super dev mode. I used GWT 2.5.1-rc1 and Chrome 26.0. I hope it is helpful. http://www.celinio.net/techblog/?p=1642 Feel free to add any comments and report any mistake. Thanks -- You rec

Re: GWT Application misbehaving on Chrome

2013-01-31 Thread Celinio Fernandes
I have the same problem with a DecoratedTabPanel, not a DeckLayoutPanel. Is this also fixed in GWT 2.5 ? Le mercredi 16 janvier 2013 15:32:54 UTC+1, Thomas Broyer a écrit : > > See https://groups.google.com/d/topic/google-web-toolkit/UBWsvHYM4SE > > TL;DR: this is indeed related to the Chrome upd

Re: How to print a portion of the screen (like a view in A&P) ?

2013-01-29 Thread Celinio Fernandes
ion was already answered in this thread > https://groups.google.com/d/topic/google-web-toolkit/7qSLr76O7WM/discussion > > > > On Sun, Jan 27, 2013 at 12:37 PM, Celinio wrote: > Hi, > I would like to ask if there is an easy way to print a portion of a screen in > GWT.

How to print a portion of the screen (like a view in A&P) ?

2013-01-27 Thread Celinio
Hi, I would like to ask if there is an easy way to print a portion of a screen in GWT. If a screen is composed of a header, a menu and a body and if i want to print the body only (with text and pictures eventually), how can i do that ? Is there a way to add a button "PRINT" that will only print the

[Activities & Places] How to save and display the criterias again when hitting the back button ?

2012-09-25 Thread Celinio
Hi, We are using Activities and Places. I have a search view with several fields (criterias) and a submit button. When the user selects a few criterias and clicks on the submit button, the activity runs the search method and displays the results in a new result view. If the user goes back the searc

Re: GwtChosen: make your select boxes much more user-friendly

2012-08-31 Thread Celinio
Very cool. Thanks. I was looking for such a widget. Too bad it does not support IE 7 though. "All modern browsers are supported (Firefox, Chrome, Safari and IE9). Legacy support for IE8 is also enabled. On IE6 and IE7, we fall back on normal html select element." Will you work on a version that su

Re: Any summary on The History and Future of Google Web Toolkit available?

2012-07-02 Thread Celinio
https://developers.google.com/events/io/sessions/gooio2012/218/ is this talk finally available somewhere ? i'm looking for the video ! On Sat, Jun 30, 2012 at 7:23 AM, Ali Jalal wrote: > Another news: > > > http://podcasts.infoworld.com/d/application-development/google-hands-over-control-of-go

Google IO 2012 : no GWT session ?

2012-05-16 Thread Celinio
Hello, I just noticed that the schedule for Google IO 2012 is now available : https://developers.google.com/events/io/sessions Not sure whether it is definitive or not. I see that this year there is no session dedicated to GWT. How come ? But there are 2 sessions dedicated to Dart. Is this a sign ?

Mode hosted with another server than Jetty ?

2012-04-12 Thread Celinio
Hi, does anyone know how to start an application in hosted mode (development) with another server than the embbeded one which is Jetty ? With the gwt-maven-plugin plugin, there are several options/parameters/mojos to launch the goal gwt:run (-Dnoserver, -Dport ...) and there are probably some reso

Re: Google Plugin for Eclipse : offline installation

2012-02-29 Thread Celinio
Found it here : http://code.google.com/intl/fr-FR/eclipse/docs/install-from-zip.html On Wed, Feb 29, 2012 at 6:38 AM, Celinio wrote: > Hello, > > I want to install GWT Designer (UIBinder), which is part of the Google > Plugin for Eclipse. > I cannot install it at work through

Google Plugin for Eclipse : offline installation

2012-02-28 Thread Celinio
Hello, I want to install GWT Designer (UIBinder), which is part of the Google Plugin for Eclipse. I cannot install it at work through Eclipse due to some proxy restrictions. http://code.google.com/eclipse/docs/download.html Where can I download the plugin for an offline installation ? I cannot

Re: Drag & drop

2011-11-11 Thread Celinio
2) Can i easily do drag and drop some file from the file explorer to a widget in a web page ? I haven't seen any example that does that. Is is possible ? The presentation of John La Banca about GWT + HTML5 has a part about the drag and drop feature but it's from one widget to another widget. I wo

Handling Timeout exception (with MVP Places and Activities) ?

2011-08-01 Thread Celinio
Hi, how do you handle a time out request in a GWT app ? Here is a snipped of my web.xml file : 30 My GWT project is based on MVP Activities and Places. Whenever the user waits more than 30mn, i want to display a popup and redirect the user to the login page. Here is what i do for all

Re: Reload the CSS of a cellTable ?

2011-08-01 Thread Celinio
anyone got an idea ? On Fri, Jul 29, 2011 at 4:36 PM, Celinio wrote: > hi, > I have defined a CSS file to a cellTable : > > /** > * The styles applied to the table. > */ > interface TableStyle extends CellTable.Style { > String evenRow(); >

Re: SelectionCell and celltable : each object in the cellTable may have it's own menu list

2011-06-08 Thread Celinio
hey, replying to my own question. I figured it out, i wrote my own custom cell, extending SelectionCell and my own addOption(), clear() methods etc. On Wed, Jun 8, 2011 at 1:42 PM, Celinio wrote: > Hi, > this question has already been asked but nobody answered. > > http://group

SelectionCell and celltable : each object in the cellTable may have it's own menu list

2011-06-08 Thread Celinio
Hi, this question has already been asked but nobody answered. http://groups.google.com/group/google-web-toolkit/msg/48a4109232fa2f35 Here is a snippet from the showcase sample : http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable final Category[] categories = ContactDatabase.get().

Re: how do i add a tooltip to a column header in a celltable ?

2011-05-31 Thread Celinio
only if i click in the column. It is not called if i just move over the mouse. That's one thing. Another thing is that I want the tool tip only when the user moves the mouse over the column header, not the entire column. Any idea ? Thanks On Tue, May 31, 2011 at 1:49 PM, Celinio wrote: >

Re: how do i add a tooltip to a column header in a celltable ?

2011-05-31 Thread Celinio
efault: break; } } }; On Tue, May 31, 2011 at 1:23 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > For example in your column. > > > 2011/5/31 Celinio > >> thanks for your answer. >> I had already explored that onBrowse

Re: how do i add a tooltip to a column header in a celltable ?

2011-05-30 Thread Celinio
tType); > boolean isMouseout = "mouseout".equals(eventType); > > // Get the event target. > EventTarget eventTarget = event.getEventTarget(); > if (!Element.is(eventTarget)) { > return; > } > final Element target = event.getEventTarget().cast(); > > > Y

how do i add a tooltip to a column header in a celltable ?

2011-05-30 Thread Celinio
hello, i just have a simple question : how do i add a tooltip to a column header in a celltable ? Thanks for helping. -- 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

Re: How to force sort on CellTable with new Data or data updated

2011-05-24 Thread Celinio
Hi, I'm actually having the same problem. What happens is that when i reload the celltable data with new data (after a new search for instance) then it correctly reloads the celltable with the new results BUT if i try to sort the rows, using any column, then it actually brings back the initial data

Code for a multi-select listbox / combobox

2011-05-20 Thread Celinio
Hi, I need to add a listbox / combobox which allows the user to choose several values. I know there is one already available in the GWT API http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/index.html?overview-summary.html with *isMultipleSelect

Redirect log to Eclipse console ?

2011-05-05 Thread Celinio
Hi, how do i redirect my logs to the Eclipse console ? I can display the logs in the DevMode console (when i add &logLevel=SEVERE to the URL) but not in the Eclipse console. Here is my XML module configuration : And in my Java entrypoint class, i impor

Re: With GWT, when exactly do you need DTOs for your entities ?

2011-05-01 Thread Celinio
rks (dozzer or gilead). The bad is obscure code, but whn > you do it is transparent for developers > > > > 2011/5/1 Celinio > >> OK. >> But if you look at this entity, it has a onetomany relationship (manytoone >> more exactly) and there is no DTO mapped to it

Re: With GWT, when exactly do you need DTOs for your entities ?

2011-05-01 Thread Celinio
u try to pass the entities from server to > client. > -Ahmed > > On May 1, 3:34 am, Celinio wrote: > > Hi, > > I need some clarification regarding the use of JPA entities within a GWT > > application. > > I have always read that you need to create a DTO for each entity

With GWT, when exactly do you need DTOs for your entities ?

2011-05-01 Thread Celinio
Hi, I need some clarification regarding the use of JPA entities within a GWT application. I have always read that you need to create a DTO for each entity that you develop in a GWT application because of some serialization problem. But if you look at this skeleton for a GWT-JPA application, you wi

GWT + entities + JPA + DTO + Dozer

2011-04-30 Thread Celinio
Hi, I am wondering what is the best way to handle mapping of entity beans (JPA 2) to DTOs. Since you cannot use entity beans "directly" with GWT, you need to handle DTOs instead. I have several entities with various relationships (OneToOne, OneToMany, ManyToMany with a join table etc). Initially i

Re: CellTable sorting : sorting several columns ?

2011-04-27 Thread Celinio
ar line I would like to know what is the > best way to get Scrollability on CellTable. > > Please share your thoughts on the same. > > Thanks in advance! > Saida. > > On Wed, Apr 27, 2011 at 2:28 PM, Celinio wrote: > >> I finally got it working. >> The problem was

Re: CellTable sorting : sorting several columns ?

2011-04-27 Thread Celinio
t.getColumn().equals(column1)) { > } > else if (event.getColumn().equals(column2)) { > } > and so on. > Hope this helps. > > > On Fri, Apr 22, 2011 at 1:36 PM, Celinio wrote: > >> Hi, >> I am using GWT 2.2 and the new CellTable sorting features, as described >

CellTable sorting : sorting several columns ?

2011-04-22 Thread Celinio
Hi, I am using GWT 2.2 and the new CellTable sorting features, as described here : http://code.google.com/intl/fr-FR/webtoolkit/doc/latest/DevGuideUiCellTable.html There is a strange error (Umbrella exception, nothing else) when I use the columnSortHandler.setComparator(...) method. I commented it

Search/filter form : should i use FormPanel ?

2011-04-19 Thread Celinio
Hi, I have this page where i need to add a search/filter area at the top with several textboxes, comboxes etc. They will contain the critaerias of the research. At the bottom i will add a CellTable which will display the results of the research. My question is : what's the best way to code this se

Re: Spring Security with GWT : how to condition access to fields in a page ?

2011-03-30 Thread Celinio
o Gardella < gardellajuanpa...@gmail.com> wrote: > Check this framework: http://code.google.com/p/acris/wiki/SecurityClient > > <http://code.google.com/p/acris/wiki/SecurityClient> > > 2011/3/30 Celinio > >> Hi, >> i read that someone else already asked for informatio

Spring Security with GWT : how to condition access to fields in a page ?

2011-03-30 Thread Celinio
Hi, i read that someone else already asked for information on how to use Spring Security with GWT, so i will not ask again. I got a more detailed question then : with Spring security, you can use tags in JSP pages to restrict access to areas of pages, or fields. For instance : <%@ taglib prefix="

[WARN] 404 - GET /.nocache.js (127.0.0.1) 1397 bytes

2011-02-28 Thread Celinio
Hi, I am new to GWT 2.2 I am using Helios with the GWT plugin. I created a simple Hello World example. The content of the module file HelloGwt.gwt.xml is : http://google-web-toolkit.googlecode.com/svn/tags/2.2.0/distro-source/core/src/gwt-module.dtd "> The content of the Hello