Re: Custom ScrollPanel

2012-08-18 Thread Deepak Singh
Any guideline or sample source code how to implement it?

Will there be any default implementation of this ?

Thanks
Deepak

On Sat, Aug 18, 2012 at 8:16 PM, Jens  wrote:

> Take a look at:
> http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/CustomScrollPanel.html
>
> It allows you to implement your own scroll bars and provide them to the
> scroll panel.
>
> -- J.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-web-toolkit/-/F7Yvz96H6ZIJ.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>



-- 
Deepak Singh

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Custom ScrollPanel

2012-08-18 Thread Jens
Take a look 
at: 
http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/CustomScrollPanel.html

It allows you to implement your own scroll bars and provide them to the 
scroll panel.

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/F7Yvz96H6ZIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Custom ScrollPanel

2012-08-18 Thread Deepak Singh
Hi All,

I need a custom scroll panel / ScrollBar looking beautiful like Gmail.
Can someone tell me any such component available ?


Regards
Deepak Singh

-- 
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, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Dev Plugin for Google Chrome

2012-08-18 Thread mukarev
Thanks J.

I finally made it with adding "--enable-easy-off-store-extension-install" 
to the shortcut of Chrome.

Best regards,
mukarev

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/52Wv4XfH1xcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Dev Plugin for Google Chrome

2012-08-18 Thread Jens
https://groups.google.com/d/topic/google-web-toolkit/jDg3KoXoVPc/discussion

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/2Ruzn2DNkTYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT Dev Plugin for Google Chrome

2012-08-18 Thread mukarev
Hello folks,

I always use to develop with GWT and debug in Firefox - now I wanted to 
switch to Google Chrome.

If I try to run the debug with Chrome it always says -> "Development Mode 
requires the Google Web Toolkit Developer Plugin"

So I wanted to download the Plugin. As I was finished Chrome prompts 
something about extensions and plugins can only be installed via Chrome Web 
Store. So I searched through the store, but wasn't able to find a DevPlugin.

Any idea?

Thanks in advance.

mukarev

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/jyo7EcfFS_gJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: FormPanel submit() displays popup

2012-08-18 Thread ksurakka
Hello,

I also had same problem, FormPanel opened popup instead 
of calling SubmitCompleteHandler.

To fix this I had to add FormPanel widget into my page.

NOT WORKING pseudo code:

FormPanel formPanel = new FormPanel();

Panel inputPanel = ...some panel...
formPanel.setWidget(inputPanel)

FileUpload fileUpload = ...create and init fileupload...
inputPanel.add(fileUpload);

myPage.add(inputPanel); // added input container panel, WRONG


and WORKING code:

FormPanel formPanel = new FormPanel();

Panel inputPanel = ...some panel...
formPanel.setWidget(inputPanel)

FileUpload fileUpload = ...create and init fileupload...
inputPanel.add(fileUpload);

myPage.add(formPanel); // add form panel instead of input panel CORRECT


Best regards
  Kari S


On Friday, July 24, 2009 9:53:34 PM UTC+3, Scott Selikoff wrote:
>
> While trying to create a FormPanel that uploads a file, my application 
> launches a pop-up window on FormPanel.submit().  Furthermore, the 
> listener designed to retrieve the results from the submit never gets 
> fired.  I'm using the latest GWT 1.7.  Below is a simplified example 
> that reproduces the issue: 
>
> public void onModuleLoad() { 
> // Setup form 
> final FormPanel form = new FormPanel(); 
> form.setEncoding(FormPanel.Encoding.MULTIPART); 
> form.setMethod(FormPanel.Method.POST); 
> form.setAction("uploadServlet"); 
>
> // Add submit response handler:  Never gets called! 
> form.addListener(Events.Submit, new Listener() { 
> public void handleEvent(FormEvent event) { 
> Info.display("Form was 
> submitted",event.getResultHtml()); 
> } 
> }); 
>
> // Add button for submit 
> form.add(new Button("Submit", new SelectionListener() 
> { 
> @Override 
> public void componentSelected(ButtonEvent ce) { 
> form.submit(); 
> } 
> })); 
>
> RootPanel.get().add(form); 
> }

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/pwrPA-m5CEMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.