Congratulations Emitrom Team!
Keep up the excelent work!
Regards,
Gabriel.
El jueves, 1 de noviembre de 2012 00:53:01 UTC-3, Alfredo Quiroga-Villamil
escribió:
>
> *Meet GWT's new sexy cousin: Lienzo!*
>
> Today we are extremely happy to announce the alpha release of our
Check out GWTP: http://code.google.com/p/gwt-platform/
On Aug 1, 5:28 pm, gktcs wrote:
> Has anyone been able to get "complete" code splitting working with gwt-
> dispatch or similar command pattern implementation?
>
> We've got a rather large MVC-based application, and our code splitting
> is do
Hi,
First, when you want to access variables and functions from JSNI that
are outside of the GWT code you must use the $wnd. prefix, for example
to run the JavaScript alert() function from JSNI you would write
$wnd.alert('something');
Second, you may be trying to call external JavaScript functions
So you can write a
generic mechanism that handles styles, attributes and innerText and
that should cover everything.
On May 25, 7:26 pm, Arshad Nadheem wrote:
> Thanks for the response Gabriel... it's the 1st option that I'm
> looking for. Generating HTML is not an option for me, since
exactly you need from the client side. You
should minimize the use of widgets as much as possible, and use them
only if you need to capture events. Otherwise it is recommended to use
HTML.
Gabriel
On May 25, 9:12 am, Arshad wrote:
> Hi all,
>
> I'm pretty new to GWT, so please bear.
Right, to capture events anywhere on the client use
Event.addNativePreviewHandler()
On May 24, 11:23 pm, zip184 wrote:
> I thought of that. The problem is that the user might hold the key
> down before they're over the object I'm capturing the events on. So
> in that case I wouldn't get the eve
I think you can achieve what you want by doing the same (sink in
constructor + onBrowserEvent() logic) with ONKEYDOWN and ONKETUP - add
a boolean variable to your class and in onBrowserEvent() set it to
true when you detect ONKEYDOWN with Ctrl and set it to false similarly
for ONKEYUP. Then you can
Since reflection is used to instantiate the classes with something
like SerializedType.newInstance() , the default constructor has to be
present. If the mechanism would allow for instantiation using non-
default constructor, that would have required more configuration in
your code and also that wou
Hi,
I think what you want can be done by calling
sinkEvents(Event.ONKEYPRESS) in the constructor and overriding
onBrowserEvent() like so:
@Override
public void onBrowserEvent(Event event) {
super.onBrowserEvent(event);
if(event.getTypeInt == Event.ONKEYPRESS) {
// your logic here
}
Hi,
I started this project http://code.google.com/p/gwt-eye-candy/ which
currently contains buttons inspired by the Closure library buttons,
and hopefully will grow with more nice looking GWT widgets.
I hope it is beneficial to the community.
Gabriel
--
You received this message because you
See this thread:
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/4d57e31e9a863c09
Maybe with getNativeEvent() method work.
Regards.
On 11 abr, 13:32, azuniga wrote:
> I've got a textbox that I only want positive floats in. So pretty much
> I just want to allow digits and
Thanks Nicolas, that's work!
2011/4/8 Nicolas Antoniazzi
> As a workaround, you can use event.getNativeEvent().getKeyCode() ==
> KeyCodes.KEY_ENTER
>
> 2011/4/8 Gabriel
>
>> Eg.
>>
>> txtPwd.addKeyPressHandler(new KeyPressHandler() {
Eg.
txtPwd.addKeyPressHandler(new KeyPressHandler() {
@Override
public void onKeyPress(KeyPressEvent event) {
if (event.getCharCode() == KeyCodes.KEY_ENTER) {
btnLogin.click();
Eg.
txtPwd.addKeyPressHandler(new KeyPressHandler() {
@Override
public void onKeyPress(KeyPressEvent event) {
if (event.getCharCode() == KeyCodes.KEY_ENTER) {
btnLogin.click();
}
}
});
Regards.
PD: I think in Firefox 3.x doesn't function.
--
**
* Duke 'n' Tux*
--
You received
Yo soy de Bs. As. cuál es el motivo de la pregunta?
Saludos!
On 29 mar, 21:24, Gal Dolber wrote:
> el chiste?
>
> On Tue, Mar 29, 2011 at 9:16 PM, Juan Pablo Gardella <
>
>
>
>
>
>
>
>
>
> gardellajuanpa...@gmail.com> wrote:
> > jajaj
>
> > 2011/3/29 Gal Dolber
>
> >> --
> >> Guit: Elegant, bea
Thanks for your time Thomas, I guess I understand concept and I can
deploy in Tomcat 6.
Greetings!
On Jan 28, 5:25 pm, Thomas Broyer wrote:
> On Friday, January 28, 2011 6:59:30 PM UTC+1, Gabriel wrote:
>
> > Hi Florian, Thomas, thanks for reply.
>
> > I have this on WEB-
Hi , first you need configured the war to plugin to use war as
warSourceDirectory, after that use mvn war:inplace and that will copy
the libraries to your lib folders, check the maven war plugin web page
for more details, also I recommend to check the maven gwt puglin
website, they have examples of
Hi Florian, Thomas, thanks for reply.
I have this on WEB-INF\lib:
* db4o-7.12.156.14667-core-java5.jar
* geronimo-jpa_3.0_spec-1.1.1.jar
* gwt-servlet.jar
* gwt-servlet-deps.jar
* jsr107cache-1.1.jar
I'm using GWT 2.1.1 without App Engine in Development Mode and run
successfully. When I try to d
Hi people!
Anybody knows how to deploy an GWT 2.1.1 App using Request Factory in
Tomcat?
Any documentation, link or answer that can help me?
Thanks!
--
*Volpe Gabriel*
***
Duke 'n' Tux - Java & Linux 4 Life*
--
You received this message because you are sub
I need to expose an enum java type in the client side, is this
possible to do without a proxy?
I tried with:
package com.foo.client.managed.activity;
public class DeviceEditActivityWrapper implements Activity{
public interface View>
extends ProxyEditView {
void setTypePickerValues(Colle
I'm looking for a good pattern or example of building custom GWT
widgets and then exposing them via a JavaScript api. I've seen a lot
of examples on how to wrap JavaScript libraries in GWT but not a lot
on the reverse. I have seen the basic examples in the documentation
on exposing simple functio
Hi Team,
I am new to GWT and we are trying to port one of our smallest web
application to GWT.
We have the file Project.gwt.xml which was created via the
webAppCreator with the following entry-point:
Some of the other classes are located in com.project.hr.bean package.
The following is the er
Hi,
Do you have a reason for splitting the application into two projects?
If not, there is nothing preventing you from using a single project
for both client and server. If you do need to have two projects, you
can use two (server and client) or three (server, client and common)
modules under one
I suggest you take a look at this: http://code.google.com/p/cobogw/
One of the widgets is a pretty customizable button - see the demo.
On May 21, 9:24 pm, outsource lucas wrote:
> How can I customize a standard Button directly from my java code?
> (I want to have round corners with images / custo
eck out these two
> > sections:http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI...
>
> >http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI...
>
> > I believe the second link is what you need.
>
> > cheers
>
> > On May 19
Hey guys,
I know that GWT interfacts with native JS using JSNI, but my question
is: can I call from native JS to GWT generated code? how?
My idea is to write, in GWT, a class (MyClass) and then, in an HTML
file import the .nocache.js file and use native JS do something like
this
MyClass ins
You can also just use an ant task or the exec plugin to in maven to
execute the compiler, I use an ant task in maven.
To debug use the eclipse gwt plugin
Cheers
Gabruel
like this
compileJS
OBFUSCATED
Hi Iembas
The way I solved is using the GWT CssResorce
you can do stuf like
@if !user.agent ie6 {
...
}
for special style for IE in your css
I recommend you to read
http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#CssResource
Cheers
Gabriel
On Mar 3, 1:30 pm, Mike
Have a nice day,
Gabriel
--
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to
google-web-toolkit+unsubscr...@googlegro
not tested them
Cheers
Gabriel
On Jan 12, 6:05 pm, John LaBanca wrote:
> Incubator Users -
>
> The Google Web Toolkit Incubator project began as a proving grounds for new
> widgets to be vetted before joining the ranks of the GWT trunk. We've seen
> some success stories ove
Hi Shiang I posted a solution for this in the following thread
http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/d08a30d356aef5c1
Cheers
Gabriel
On Dec 5 2009, 12:23 pm, shiang wrote:
> Hi all,
>
> Do you know is there any workaround solutions t
Hello guys,
I have the most weird problem in history (Dramatic han? ). Well, the
thing is, My application just don't work in IE 6, 7 and 8 and the only
lead i could really find was a "Can't execute from a freed script". No
javascript errors show up, besides this one that i was able to find
usng th
un in hosted mode, unless I would run the entire application on the
hosted mode server (which is a bad practice for real-world
applications to my understanding, and may not work the same as the
standard Tomcat).
Can this be achieved?
Thanks,
Ga
that again opens the
openid provider login page in a new window (so state of the app is not
lost), the gwt app has a jsni method to reload the user this method is
called by the new window when the login is successful
Cheers
Gabriel
On Jun 23, 3:36 pm, Mark wrote:
> >> why couldn't yo
Does anyone knows why history does not ork propertly on IE ?
I have this on my .html
and on my java code
History.addValueChangeHandler(this);
String initToken = History.getToken();
if (initToken.length() == 0) {
History.newItem("index");
}
History.fireCurrentHistoryState();
So in fir
moved because the antrun is very simple and had
worked very well for me, by the way for those interested in using the
maven structure for GWT 1.6.4 , you have to pass -war /src/main/webapp
to the Compiler and HostedMode app to use the default maven structure
Cheers
Gabriel
On Apr 9, 4:03 pm, Benju
In addition to what everyone said, I recommend using Cypal Studio
Eclipse plugin. It has a very neat feature for automatically
synchronizing the *Async interfaces with the service interfaces.
On Mar 4, 7:05 am, shiren1118 wrote:
> which tools you have used for development of GWT?
> I'm puzzled
he updated data. Should I make an RPC call to the server every
time the user enters a screen that requires the data or should I make
the calls for more specific data, for example as part of suggestions
fetching in an auto-suggest box of list box?
T
Hi guys, im having problems using the History.newItem(String,
boolean);
when a RPC is made and is compleated i use History.newItem
("someToken", true) so i can change the view, this works fine on
firefox but on IE (version... i dont know, but is the one that have
the tabs) is not getting triggere
is no method to insert at a
position in the fastTreeItem so it will be appended as the last node
which i dont want)
Cheers
Gabriel
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
di u register it?
History.addHistoryListener(this);
this = EntryPoint class
Regards,
On Dec 15, 10:49 pm, Rinku wrote:
> On Dec 11, 6:43 pm, Rinku wrote:
>
> > Hi,
> > I am using FileUpload Widget to upload a file.
> > When I am upolading more than one files with FileUploadWidget and
> > a
hi guys, i need to do an slide show inside my app. is there any pre-
existing gadget or component that i can use instead of building from
scratch??
thanks,
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Google Web
Thanks,
Gabriel Thiesen
On Sep 19, 3:02 pm, ZhangJianshe <[EMAIL PROTECTED]> wrote:
> hello,guys, i encount the same problem,whould you like share your
> solutions?
>
> but ,i need you help.
>
> On 8月31日, 下午10时03分, Gabriel Thiesen <[EMAIL PROTECTED]> wrote:
>
>
from Frankfurt,
Gabriel.
--~--~-~--~~~---~--~~
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, sen
Thank you adm.dfs,
Was exactly this indeed, so thank you very much
Gabriel Thiesen
On Aug 30, 8:17 am, "adm.dfs" <[EMAIL PROTECTED]> wrote:
> Hello Gabriel,
>
> Its because Yours RCP implementation is located in same package with
> RCP interfaces.
> GWT
Any ideas? i am completely lost in here, anything would help alot
|Thanks,
Gabriel Thiesen
On Aug 29, 12:14 pm, Gabriel Thiesen <[EMAIL PROTECTED]> wrote:
> Hello guys,
>
> I have been trying for 3 days make the oficial release of GWT work
> here with no success. It keeps
rver side beans, and should not be anoying me with
compilation GWT issues
And the RemoteServiceServlet is a default library, should not be
anoying me with this errors.
ManageRoles.gwt,xml file
What is going on? Please help me
Tha
The firewall software in my compamy seems to modify the Left shift "
<< " operators.
in the generated Java Script there ist following line:
function Eob(a){if(a<=30){return 1< wrote:
> I hav the same problem. I can openhttp://gwt-ext.com/demo-ux/and the
> old
> showcase2-apphttp://gwt-ext.com/sh
48 matches
Mail list logo