Saturday, April 30, 2016

MaterialSearch - issues

Hi Everyone -

The GWT Material Design is a great contribution.  I'm trying to use it in our project (http://peruselab.com), we plan to release in Aug 2016.

One of the component I'm trying to use is the MaterialSearch.  It's well designed and works as expected. However, the behavior of this is inconsistent across browsers. This may be a known issue but I'm sharing it here for the benefit of others. If anyone has found a work around please let me know. You may verify my findings at the demo site.

Works in
Opera Version 36.0 on Windows 10.x
Safari Version 9.1.x on Mac 
Chrome Version 49.0.2623.112 on Mac but Version 50.x failed 
 
 

 
Works but not as expected in -
Chrome Version 51.0.2704.29 beta-m (64-bit) on Windows 10.x
Chrome Version 50.0.x on Mac failed (Harrrr... why did I update?)
Haven't tried 32 bit version of Chrome yet 

MS Edge Version 25.10... on Windows 10 (results list is shown even before start searching)

 
 
Firefox Version 24 (yes, I have this version to debug GWT apps in classic mode, occassionally) on Windows 10.x

 
Does not appear in (actually the search icon momentarily appears and disappears) --
Firefox Version 44.0.2 & 46 on Mac
Firefox Version 46 on Windows 10

 
Have a great rest of the weekend!
Thanks
Sam Velu
 
 

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Friday, April 29, 2016

Re: MaterialModal in gwt-material-1.5.0.jar

Oops! Sorry I missed the attachment. It's available from my Google Drive.

On Friday, April 29, 2016 at 4:58:04 PM UTC-4, Velusamy Velu wrote:
Hello -

I wanted to move my project to gwt-material-1.5.0 from 1.4.  The move could have been painless but for the MaterialModal.  Changing from static to instance model seems like the right thing to do.  As a precaution I created a simple pilot project with gwt-material-1.5.0.jar and followed the steps as in (http://gwtmaterialdesign.github.io/gwt-material-demo/#!gettingstarted).  This project is not a Maven project so I downloaded the gwt-material-1.5.0.jar file.

It brings up simple button as show above.  The idea is to show a modal when the button is clicked.


The problem is it just doesn't work right.  A gray screen appears without the content, like this.



Here are the snippets of code (I also have attached the Eclipse project file as a zip) -


in the entry point class's job is to show a button defined in an UiBinder called ModalLauncher -

        ModalLauncher launcher = new ModalLauncher();
       
RootPanel.get("sendButtonContainer").add(launcher);

the module launcher's UI is
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui"
 
xmlns:m="urn:import:gwt.material.design.client.ui">
 
<g:HTMLPanel>
 
<m:MaterialButton text="Show Modal" ui:field="button" margin="15" />
 
</g:HTMLPanel>
</ui:UiBinder>

its java counterpart is

    @UiHandler("button")

   
void handleClick(ClickEvent event) {
       
AboutUs aboutUs = new AboutUs();
        aboutUs
.show();
   
}


the AboutUs is
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui"
 
xmlns:m="urn:import:gwt.material.design.client.ui">
 <g:HTMLPanel>
   
<m:MaterialModal type="DEFAULT" inDuration="500" outDuration="500"
     
ui:field="aboutUsModal" backgroundColor="blue" dismissable="true">
     
<m:MaterialModalContent>
       
<m:MaterialTitle title="Default Modal" description="Howdy world!" />
     
</m:MaterialModalContent>
     
<m:MaterialModalFooter>
       
<m:MaterialButton text="Close Modal" type="FLAT" />
     
</m:MaterialModalFooter>
   
</m:MaterialModal>
 
</g:HTMLPanel>

</ui:UiBinder>


and its java counterpart is - 
    interface AboutUsUiBinder extends UiBinder<Widget, AboutUs> {
   
}

   
private static AboutUsUiBinder uiBinder = GWT.create(AboutUsUiBinder.class);

   
@UiField
   
MaterialModal aboutUsModal;

   
public AboutUs() {
        initWidget
(uiBinder.createAndBindUi(this));
   
}

   
void show() {
        aboutUsModal
.openModal();
   
}

Any help would be highly appreciated.

Thanks
Sam Velu

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

MaterialModal in gwt-material-1.5.0.jar

Hello -

I wanted to move my project to gwt-material-1.5.0 from 1.4.  The move could have been painless but for the MaterialModal.  Changing from static to instance model seems like the right thing to do.  As a precaution I created a simple pilot project with gwt-material-1.5.0.jar and followed the steps as in (http://gwtmaterialdesign.github.io/gwt-material-demo/#!gettingstarted).  This project is not a Maven project so I downloaded the gwt-material-1.5.0.jar file.

It brings up simple button as show above.  The idea is to show a modal when the button is clicked.


The problem is it just doesn't work right.  A gray screen appears without the content, like this.



Here are the snippets of code (I also have attached the Eclipse project file as a zip) -


in the entry point class's job is to show a button defined in an UiBinder called ModalLauncher -

        ModalLauncher launcher = new ModalLauncher();
       
RootPanel.get("sendButtonContainer").add(launcher);

the module launcher's UI is
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui"
 
xmlns:m="urn:import:gwt.material.design.client.ui">
 
<g:HTMLPanel>
 
<m:MaterialButton text="Show Modal" ui:field="button" margin="15" />
 
</g:HTMLPanel>
</ui:UiBinder>

its java counterpart is

    @UiHandler("button")

   
void handleClick(ClickEvent event) {
       
AboutUs aboutUs = new AboutUs();
        aboutUs
.show();
   
}


the AboutUs is
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui"
 
xmlns:m="urn:import:gwt.material.design.client.ui">
 <g:HTMLPanel>
   
<m:MaterialModal type="DEFAULT" inDuration="500" outDuration="500"
     
ui:field="aboutUsModal" backgroundColor="blue" dismissable="true">
     
<m:MaterialModalContent>
       
<m:MaterialTitle title="Default Modal" description="Howdy world!" />
     
</m:MaterialModalContent>
     
<m:MaterialModalFooter>
       
<m:MaterialButton text="Close Modal" type="FLAT" />
     
</m:MaterialModalFooter>
   
</m:MaterialModal>
 
</g:HTMLPanel>

</ui:UiBinder>


and its java counterpart is - 
    interface AboutUsUiBinder extends UiBinder<Widget, AboutUs> {
   
}

   
private static AboutUsUiBinder uiBinder = GWT.create(AboutUsUiBinder.class);

   
@UiField
   
MaterialModal aboutUsModal;

   
public AboutUs() {
        initWidget
(uiBinder.createAndBindUi(this));
   
}

   
void show() {
        aboutUsModal
.openModal();
   
}

Any help would be highly appreciated.

Thanks
Sam Velu
http://peruselab.com

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

how to add a widget into row for data grid when other rows are cells for each column?

Data grid has multiple columns and each column has cell to display each row which is regular implementation. 

I want to add a widget at one row which should cover the whole row. 

how to do that ?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: RAM memory continously increasing while using GWT Application in IE Browser

Thamarai Kannan:

Any reason you chose GWT 2.5.1 instead of the latest version?  As Gilberto responded it would be easier to pinpoint the problem if you could share your code, unless you are restricted.

On Monday, February 15, 2016 at 5:05:18 AM UTC-5, thamarai kannan wrote:
Hi, I am using GWT Application. for this application I am using IE10. While lading another screen or reloading same page my RAM Memory increasing continously. Approximately each load 5MB RAM memory consuming. Anyone help me to free this memory space at the time of loading.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: RAM memory continously increasing while using GWT Application in IE Browser

We are also using GWT 2.5.1, and we faced a memory leak under IE. I'm not sure whether it applies to you, but we did find the root cause of a leak for Cell Tables.

https://groups.google.com/forum/#!searchin/google-web-toolkit/celltable$20memory$20leak/google-web-toolkit/lNOKG2dgAzs/UE6D_EW8QD0J

Harvard

On Friday, April 29, 2016 at 7:36:29 AM UTC-4, thamarai kannan wrote:
Dear Sir, I am using gwt-2.5.1 for developing GWT application. Also I am using Textbox, listbox, textarea, label, Celltable and datagrid in my application.

On Monday, February 15, 2016 at 6:55:58 PM UTC+5:30, Gilberto wrote:

Which version of GWT are you using? And can you share your code so we can try to find the memory leak?

On Monday, February 15, 2016 at 8:05:18 AM UTC-2, thamarai kannan wrote:
Hi, I am using GWT Application. for this application I am using IE10. While lading another screen or reloading same page my RAM Memory increasing continously. Approximately each load 5MB RAM memory consuming. Anyone help me to free this memory space at the time of loading.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: RAM memory continously increasing while using GWT Application in IE Browser

Dear Sir, I am using gwt-2.5.1 for developing GWT application. Also I am using Textbox, listbox, textarea, label, Celltable and datagrid in my application.

On Monday, February 15, 2016 at 6:55:58 PM UTC+5:30, Gilberto wrote:

Which version of GWT are you using? And can you share your code so we can try to find the memory leak?

On Monday, February 15, 2016 at 8:05:18 AM UTC-2, thamarai kannan wrote:
Hi, I am using GWT Application. for this application I am using IE10. While lading another screen or reloading same page my RAM Memory increasing continously. Approximately each load 5MB RAM memory consuming. Anyone help me to free this memory space at the time of loading.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Announcing Ahomé Desk

We are so excited to share Ahomé Desk Beta 1

A year ago @Elom and I had a vision of creating a unique and personal cloud experience. An intelligent layer over the things you care the most.

The cloud is everywhere. And the number of services we use increases exponentially. Document, , Photos, Videos, Musik, Contacts, Friend, Events, Locations, Social Networks etc ...

We found ourselves using more and more applications every day. Keeping track on all this services becomes even more challenging.

And because most of those services are not designed to play nice with each other, as users we found ourselves switching back and fort between them. Loosing focus. Wasting time.

Ahomé Desk is our attempt fix this situation. Our attempt to intelligently organise the way we use the cloud.

A place where you access the things that are important to you in a simple familiar, beautiful interface. Organized and synchronized across devices.

A place where the user is at the center and not the services that she uses.

Your Home in the Cloud

Please keep in mind that this is a beta release. So expect bugs and things that or not polished and or finished yet.

We are just at the beginning of our journey, we have lots of things in the pipeline and cant wait to share with you what s coming next.

We need you to make this a great product.
Please visit link below and let us know what you think.



https://desk.ahome-it.com

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Thursday, April 28, 2016

Re: What needs to be done after a successful login

One of the great things about "single page apps" if, not a security issue, you can let the user carry on where they left off... text box input, pending file uploads, tab position...

On Thursday, April 28, 2016 at 8:45:46 AM UTC+1, Pavlo Iatsiuk wrote:
  • clean your current view to hide a login form: RootPanel.get().clear();
  • create a view what you want to show for users and attach it: RootPanel.get().add(myView);

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: What needs to be done after a successful login

  • clean your current view to hide a login form: RootPanel.get().clear();
  • create a view what you want to show for users and attach it: RootPanel.get().add(myView);

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: execute perl from gwt

Hello,

it is not possible because gwt it's as babel/typescript - client side.
Everything what you can do - it's to send a request to server side, invoke perl script there and return result back to the client side.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

error

Don't use it?

java.lang.Runtime isn't part of the emulated classes you can use in client-side code to be compiled by GWT: http://www.gwtproject.org/doc/latest/RefJreEmulation.html#Package_java_lang

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Wednesday, April 27, 2016

error

how can i resolve these error


java.lang.Runtime can not be found in source packages. Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

execute perl from gwt

can anyone tell me how to execute perl script from gwt step by step process as  I am just start working with gwt.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: Global Event bus for separate compilation modules

I understand the turducken model that but I not suggest the linked implementation because the gwt compiler in that way will produce redundant code in each module and this can cause some problems at runtime of js code. I suggest to use a global js object and reference it trough a native jsni method. Using window.post is a specific way to reuse a global JS object and obtain a messaging mechanism with a single call and without the problems I see in re-writing the bus as a gwt module. With gwt 2.8 this problem is solved with jsinterop.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: Global Event bus for separate compilation modules

I have just suggestion to use some JS eventbus, expose it as global JS object and get reference on that in both modules.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Global Event bus for separate compilation modules

No, I think Ahmad is talking about the "turducken" architecture. I just stumbled on http://gwtdaily.com/post/79849550460/gwt-interappeventbus which should answer the question (with link to the presentation about the original concept)

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Tuesday, April 26, 2016

Global Event bus for separate compilation modules

What do you mean for separate modules? Gwt enables to develop separate modules but during compilation time you will get a unique javascript source... if you mean that you have more than one entry point I can imagine that you are running them in separate window or separate iframe. If so you can build an event driven interface trough Window.postMessage, when a window receives a message you can intercept it with window.addEventListener('message', listener). More info on https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: GWT, Firefox, and focusout

You might need to look into the DOMImpl and DOMImplStandard classes and dispatchEvent...  It might be easier to add the event listener via JSNI as well.

On Tue, Apr 26, 2016 at 7:45 AM N Troncoso <noah.troncoso@gmail.com> wrote:
This is a GWT issue in that I'm trying to get it to work in GWT. I've tried implementing the code in that link, but a GWT browser event is still not fired even when the javascript focusout event is fired.


On Friday, April 22, 2016 at 11:11:59 AM UTC-4, JonL wrote:
This is not a GWT issue really, so let me GTFY:

https://gist.github.com/nuxodin/9250e56a3ce6c0446efa

On Thursday, April 21, 2016 at 1:16:00 PM UTC-7, N Troncoso wrote:
I have an issue where an event isn't firing in Firefox, and it turns out this is because Firefox doesn't currently support the focusin and focusout events.

This is a problem in a custom cell where I'm overriding onBrowserEvent. On the blur event, the ValueUpdater parameter is null, but it's not null on the focusout event. How can I work around this issue?

--
You received this message because you are subscribed to a topic in the Google Groups "GWT Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/W0z1qW38zCc/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
--
Jonathon Lamon
Chief Software Engineer
Perceptronics Solutions Inc.
Tel  703-485-2922
Cell 269-205-4649
www.percsolutions.com

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: GWT, Firefox, and focusout

This is a GWT issue in that I'm trying to get it to work in GWT. I've tried implementing the code in that link, but a GWT browser event is still not fired even when the javascript focusout event is fired.

On Friday, April 22, 2016 at 11:11:59 AM UTC-4, JonL wrote:
This is not a GWT issue really, so let me GTFY:

https://gist.github.com/nuxodin/9250e56a3ce6c0446efa

On Thursday, April 21, 2016 at 1:16:00 PM UTC-7, N Troncoso wrote:
I have an issue where an event isn't firing in Firefox, and it turns out this is because Firefox doesn't currently support the focusin and focusout events.

This is a problem in a custom cell where I'm overriding onBrowserEvent. On the blur event, the ValueUpdater parameter is null, but it's not null on the focusout event. How can I work around this issue?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

jsinterop: casting between jstypes

Hi,

I just started experimenting with the new jsinterop and I have one question.

I am using bootstrap which is using jquery, Although there are implementations around (https://github.com/workingflows/gwt-jquery) I thought to give it a try as a learning exercise, to see how far I can get before I incorporate somebody else's solution.

So here is the core from jquery

@JsType(isNative = true)
public class JQuery {
    @JsMethod(namespace = JsPackage.GLOBAL)
    public static native JQuerySelection $(String selector);
}

where JQuerySelection is
@JsType(isNative = true)
public class JQuerySelection {

}

and it works! Great

Now let's try to bring bootstrap inside. I want to user their modals. The way to get a modal is through jquery. Let's extend the jqueryselection

JsType(isNative = true)
public class BootstrapModal extends JQuerySelection {
    public native void modal(String command);

    @JsOverlay
    public final void show() {
        modal("show");
    }

    @JsOverlay
    public final void hide() {
        modal("hide");
    }
}

//////////////////// java caller  ----- It crashes on cast

((BootstrapModal) JQuery.$("#modal_id")).show();

Now when I try this from my java code it crashes (saying that  mypackage name (com.mypackage.) is not a property)

What is  the way to use jsinterop in order to capture the implicit parent/child relationship between BootstrapModal and JquerySelection?

I work around it by adding in BootstrapModal this
    @JsMethod(namespace = JsPackage.GLOBAL, name="$")
    public static native BootstrapModal getModal(String selector);

but it doesn't strike me as the correct way to do it.

Any hints?

--
Vassilis Virvilis

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Monday, April 25, 2016

Re: gwt-2.8.0-beta1 / isn't it about time for a beta2?

No, I believe it's about having at least a snapshot of guava-gwt that's usable with the GWT beta2 or RC (I was absent at the meeting so don't have more info)

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: gwt-2.8.0-beta1 / isn't it about time for a beta2?

So, it is pending Guava? Is the Guava referenced being used as a part of the build system?
GWT Steering Committee Meeting (4/13/2016)

Java8
  • Good progress in adding support.
  • Need more tests for Java8: Soliciting contributions from community.
GWT 2.8
  • Main criteria: Get new Guava working with GWT 2.8 before releasing 2.8.
Github issues
  • Being used regularly
  • Thomas is driving a plan to handle this better. Will wait for this to be finalized.
Refresh of beta
  • Check how much work is left to be done to get guava building before deciding on this.
  • If 2.8 RC1 doesn't look imminent, put out a new beta.

On 04/25/2016 12:34 PM, Thomas Broyer wrote:


On Monday, April 25, 2016 at 4:18:04 PM UTC+2, Michael Joyner wrote:
gwt-2.8.0-beta1 / isn't it about time for a beta2?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: gwt-2.8.0-beta1 / isn't it about time for a beta2?



On Monday, April 25, 2016 at 4:18:04 PM UTC+2, Michael Joyner wrote:
gwt-2.8.0-beta1 / isn't it about time for a beta2?

See https://groups.google.com/d/msg/gwt-steering/11oqMx-Bn0A/sGcwVreaAwAJ 

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

gwt-2.8.0-beta1 / isn't it about time for a beta2?

gwt-2.8.0-beta1 / isn't it about time for a beta2?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: Cannot get rich log messages from java.util.logging.Logger

Sorry, my bad! This is finally working! Thanks you very much for that! :D

On Tuesday, 19 April 2016 10:26:49 UTC+2, Pavlo Iatsiuk wrote:
Hello,

There are a few settings which allow to print more. Here is my logging settings:

<inherits name="com.google.gwt.logging.Logging"/>
<set-property name="gwt.logging.logLevel" value="FINEST"/>
<set-property name="gwt.logging.consoleHandler" value="ENABLED"/>
<set-property name="gwt.logging.simpleRemoteHandler" value="DISABLED"/>
<set-property name="gwt.logging.popupHandler" value="DISABLED"/>
<set-property name="compiler.stackMode" value="emulated"/>
<set-configuration-property name="compiler.emulatedStack.recordLineNumbers" value="true"/>
<set-configuration-property name="compiler.emulatedStack.recordFileNames" value="true"/>





On Thursday, April 14, 2016 at 11:58:53 PM UTC+2, Stefan Falk wrote:
Can somebody take a look at my question [1] on stackoverflow?

My problem is that I am not getting the full package name or anything else but the raw log message printed to the log window.

So instead of something like

com.company.more.packages.MyObject - Hello World!

I am  just getting

Hello World!

and I have no idea what the problem is ..

Thank you for any help!

BR; Stefan

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.