Re: GWT Security

2013-03-06 Thread dilantha silva
Hi Guys, Thanks for your replies. I came across this framework called Acris. Which seems to have the features that i was looking for. But it is bundled with maven . Since im not familiar with maven and my project is not build using maven im not sure how am i going to use acris [?]. http://code.go

GWT TabPanel in firefox , IE8 & 9

2013-03-06 Thread Rob Green
We have an application developed in IE7 and it works fine, but when we try to run it in FF, ie8 & 9 the widgets in tabPanel does not load/show, everything works fine thou except only not showing the widgets in the tabpanel. -- You received this message because you are subscribed to the Google

Re: I/O 2013 - GWT Sessions?

2013-03-06 Thread James Horsley
+1 for a separate GWT convention On 7 March 2013 06:06, Steve wrote: > Now that GWT is more community run, I think it would be better if we just > had our own convention... > > I went to the second I/O, and GWT was all over the place. Then each year > after there were fewer and fewer session, m

Re: I/O 2013 - GWT Sessions?

2013-03-06 Thread Steve
Now that GWT is more community run, I think it would be better if we just had our own convention... I went to the second I/O, and GWT was all over the place. Then each year after there were fewer and fewer session, more free swag, and an android push. On top of that, there is such a media hype

Re: I/O 2013 - GWT Sessions?

2013-03-06 Thread KevMo
I'd love to know this too. I was also a bit bummed out last year about the lack of GWT sessions. On Wednesday, March 6, 2013 2:56:52 PM UTC-8, James wrote: > > I know it's earlybut is anyone familiar with the planned Google Web > Toolkit sessions for Google I/O 2013? It was a bit disappoint

I/O 2013 - GWT Sessions?

2013-03-06 Thread James
I know it's earlybut is anyone familiar with the planned Google Web Toolkit sessions for Google I/O 2013? It was a bit disappointing last year when there was only one real GWT session...after there had been many in all the previous years. GWT Team...any comments? -- You received this mes

Re: Vaadin Calendar is Free now, But How?

2013-03-06 Thread Manuel
Hey, Im also interested in that. But Im confused if it can be simply included in a gwt project or if it has to be a vaadin project or something like that. Anyone used vaadin calendar addon so far? Regards, Manuel -- You received this message because you are subscribed to the Google Groups "G

Re: Celltable loading state

2013-03-06 Thread ips
I am with you that the loading indicator is never displayed when using a ListDataProvider. Using GWT 2.5, I tried all the methods mentioned in this thread, and none of them worked. So I came up with the following hack, which essentially temporarily hijacks the empty table widget for use as a lo

Re: Is it possible to create screens at runtime?

2013-03-06 Thread Thiago borges martins
Ok thanks for the help 2013/3/5 Sanjiv Jivan > There are samples of using XML screen definitions in the SmartGWT EE > Showcase under the folder "Component XML", but you have to download a 4.0 > build to get them: > > http://smartclient.com/builds > > The Component XML overview explains how t

Re: MultiWordSuggestOracle with multiple values?

2013-03-06 Thread Ümit Seren
alternatively you could also look into gwtchosen ( https://github.com/jDramaix/gwtchosen) On Wednesday, March 6, 2013 11:25:17 AM UTC+1, membersound wrote: > > Thanks, the raibledesigns think look exactly what I was looking for. > > > 2013/3/5 Mathieu Lorber > > >> [re-post but first is lost in sp

Re: GWT Security

2013-03-06 Thread Philippe Lhoste
On 06/03/2013 12:58, dilantha silva wrote: Thanks a lot for your quick reply. Actually my application has lot of Ui classes (More than thousand)and various types of user groups. If i have to check user permission manually and add if-else for each and every component that will be a huge amount

Re: RequestFacory Id Version Name

2013-03-06 Thread Metronome
As I expected but was not sure Thanks Patrick From: Jens Sent: Wednesday, March 06, 2013 12:13 PM To: google-web-toolkit@googlegroups.com Subject: Re: RequestFacory Id Version Name Column names are irrelevant and can have any name as long as you have getters named getId() and getVersion(). I

Re: GWT Security

2013-03-06 Thread Jens
Well actually you have to call setVisible/setEnabled a thousand times if you have thousand widgets to configure. You can either do it explicitly by if/else for each widget all across your code base or you search (maybe DOM based)/register the relevant widgets. But that still means you have to

Re: GWT Security

2013-03-06 Thread dilantha silva
Hi Jens, Thanks a lot for your quick reply. Actually my application has lot of Ui classes (More than thousand)and various types of user groups. If i have to check user permission manually and add if-else for each and every component that will be a huge amount of work.I'm just wondering weather th

Re: RequestFacory Id Version Name

2013-03-06 Thread Jens
Column names are irrelevant and can have any name as long as you have getters named getId() and getVersion(). If your getters have different names then you have to use a Locator. > > -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: RequestFacory Id Version Name

2013-03-06 Thread Metronome
not really to try to be more explicit : can I have a domain with an id called ‘my_id’ and a version 'my_version’ and declare the id and version as in my example From: Thomas Broyer Sent: Wednesday, March 06, 2013 11:53 AM To: google-web-toolkit@googlegroups.com Subject: Re: RequestFacory Id

Re: RequestFacory Id Version Name

2013-03-06 Thread Thomas Broyer
RequestFactory will either use a Locator (which will give the ID and version the way you want), or expects to find a pair of methods named getId and getVersion on the domain class; all of this repeated for each proxy. Does that answer your question? On Wednesday, March 6, 2013 11:48:07 AM UTC+1

RequestFacory Id Version Name

2013-03-06 Thread Metronome
@Id @Column(name = "my_id") @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Version @Column(name = "my_version") private Integer version;I’m just wondering if it’s possible to use RequestFactory with id and version with differen column namesThanks Patrick -- You re

Re: Dom.isOrHasChild() fails for SVG elements in IE9 (standards mode)

2013-03-06 Thread jandm
Issue posted: http://code.google.com/p/google-web-toolkit/issues/detail?id=8059 -- 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+unsubsc

Re: GWT Security

2013-03-06 Thread Jens
You could load your user credentials on app start and then set UI controls visible/invisible based on the users credentials. But that only makes the UI nice for the user. You still have to check for the same credentials on your server so that your server disallows any server actions that the use

Re: MultiWordSuggestOracle with multiple values?

2013-03-06 Thread Kody
Thanks, the raibledesigns think look exactly what I was looking for. 2013/3/5 Mathieu Lorber > [re-post but first is lost in space ?] > > If you want a facebook-like autocomplete (not sure to understand your > initial need), you should not modify your existing Oracle nor extend the > Suggestion

GWT Security

2013-03-06 Thread dilantha silva
Hi Guys, I have an application which is build by using GWT. I want to implement some user authorization mechanism for it. Basically i want to restrict some of the functions for specific user groups in client side . What will be the best approach for this ? How do we restrict certain feature from

Vertical Menu Bar klick on arrow

2013-03-06 Thread Dominic Warzok
Hey, I'm developing a little website. Now I try to use a MenuBar and it is working fine but there is a little arrow which shows, that there is a pop up menu. (See attachment) But I can't click on it. In tests the all my users try to klick on this arrow because they expected this would ope