Re: Menubar Sub-menu Arrows .

2012-02-15 Thread Abduxkur Ablimit
check * gwt.xml and remove code inherits name='com.google.gwt.user.theme.standard.Standard'/or some thing like theme, you can create your own css style and inherit it . From: Chris xtian@gmail.com To: Google Web Toolkit

Re: GWT Developer Plugin for Firefox 9

2011-12-28 Thread Abduxkur Ablimit
can somone send me this plugin, i couldn't download it, thx From: Zakaluka zakal...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Thursday, December 29, 2011 8:22 AM Subject: Re: GWT Developer Plugin for Firefox 9 Tested on

Re: GWT Developer Plugin for Firefox 9

2011-12-28 Thread Abduxkur Ablimit
can somone send me this plugin, i couldn't download it, thx From: Zakaluka zakal...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Thursday, December 29, 2011 8:22 AM Subject: Re: GWT Developer Plugin for Firefox 9 Tested on

Re: GWT Developer Plugin for Firefox 9

2011-12-28 Thread Abduxkur Ablimit
can someone send me this plugin , i couldn't download it , email is sugar...@yahoo.com thx a lot . From: Zakaluka zakal...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Thursday, December 29, 2011 8:22 AM Subject: Re: GWT

Re: GWT : How to call SERVLET FROM GWT_SERVLET and How to return value from target servlet to source servlet?

2011-09-04 Thread Abduxkur Ablimit
Subject: Re: GWT : How to call SERVLET FROM GWT_SERVLET and How to return value from target servlet to source servlet? Thanks for reply In your provided code , you are calling TargetServlet from client. I  want to call targetServlet from BasicServiceImpl(GWT Servlet). On Sep 1, 6:41 am, Abduxkur

Re: Gwt RequestBuilder + Servlet issue

2011-09-04 Thread Abduxkur Ablimit
try this    export.addClickHandler(new ClickHandler(){             public void onClick(ClickEvent event) {                 String link = GWT.getModuleBaseURL() + exportServlet?year=+year.getValue(year.getSelectedIndex())+month=+month.getValue(month.getSelectedIndex());                 

Re: GWT : How to call SERVLET FROM GWT_SERVLET and How to return value from target servlet to source servlet?

2011-08-31 Thread Abduxkur Ablimit
you can call a servlet from client side like this (may be you want put these code into AsyncCallback method body, from gwt servlet):         btn.addClickHandler(new ClickHandler(){             public void onClick(ClickEvent event) {                final String link = GWT.getModuleBaseURL() +

Re: Sending a value from a celltable to a view

2011-08-28 Thread Abduxkur Ablimit
: Sandney Farias sandneyfar...@gmail.com To: google-web-toolkit@googlegroups.com Cc: Abduxkur Ablimit sugar...@yahoo.com Sent: Saturday, August 27, 2011 12:30 AM Subject: Re: Sending a value from a celltable to a view For example  you get the String   RootPlace:banco/123 I got the string

how to show loading bar while receive response from servlet

2011-08-25 Thread Abduxkur Ablimit
) {                     GWT.log(Error, re);                 }             }         }); Thanks in advance. Abduxkur Ablimit -- 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

Re: Sending a value from a celltable to a view

2011-08-25 Thread Abduxkur Ablimit
...@gmail.com To: google-web-toolkit@googlegroups.com Cc: Abduxkur Ablimit sugar...@yahoo.com Sent: Thursday, August 25, 2011 8:16 PM Subject: Re: Sending a value from a celltable to a view Sugar_xj, I'm getting the value. My problem is that the application get a string value and isn't possible cast

Re: Sending a value from a celltable to a view

2011-08-24 Thread Abduxkur Ablimit
try   String  token=History.getToken();  //RootPlace:banco/123   String key = token.split(/)[1] From: Sandney Farias sandneyfar...@gmail.com To: google-web-toolkit@googlegroups.com Sent: Thursday, August 25, 2011 4:31 AM Subject: Sending a value from a celltable

Re: how to fire blur event when keydown ?

2011-07-19 Thread Abduxkur Ablimit
@UiField TextBox textboxField;     @UiHandler(textboxField)     public void keyDownSearchHandler(KeyDownEvent event){         textboxField.fireEvent(new BlurEvent(){})     } From: Luke travalle...@gmail.com To: Google Web Toolkit

Re: is there a way to identify clickevent coming from which button?

2011-07-15 Thread Abduxkur Ablimit
public XXButton extend Button{ private long id; // getter setter } From: Jim Douglas jdou...@basis.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Tuesday, July 12, 2011 12:53 AM Subject: Re: is there a way to identify clickevent coming

Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Abduxkur Ablimit
you said:first abc:null and then, automatically abc:1. That messes with the history completely - back now clearly won't work (will go to abc:null). this is because of ur ABCActivity is not singlton, if it is singlton it wont call the method(probably initial method) which will

Re: Aw: Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-07 Thread Abduxkur Ablimit
@Prefix(TOKEN_NAME)     public static class Tokenizer implements PlaceTokenizerPayRequestListPlace {         // Since the place is injectable, we'll let Gin do the construction.         private final ProviderPayRequestListPlace placeProvider;         @Inject     public