Thursday, April 30, 2015

Re: [GWT] [ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core'

When you are importing com.google.gwt.user.User in gwt.xml you are using single quote instead of double quote. This may be the reason.

On Apr 30, 2015 9:12 PM, "Danish Khan" <danishullahkhan@gmail.com> wrote:
Hi guys, 

Any ideas/help with the following issue? 

Thanks. 

On Thursday, April 23, 2015 at 12:06:15 AM UTC-7, Danish Khan wrote:
Hi all, 

I am upgrading to GWT 2.7.0 / Smartgwt 5, and I am seeing the following error when I try to build it through maven: 

[GWT]    [ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core' either directly or indirectly (most often by inheriting module 'com.google.gwt.user.User')

Here is my gwt.xml. Please let me know if you have any suggestions to fix this error. 

<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='dregtool'>
<inherits name='com.google.gwt.user.User'/> 
<inherits name="com.google.gwt.core.Core" />
<inherits name="com.google.gwt.user.History"/> 
<inherits name="com.dreg.tools.ui.GWTFramework" />
<inherits name="com.dreg.at.atcommon.ATCommon" />
<inherits name="com.dreg.at.atcommon.smartgwt.Components" />
<inherits name="com.gwtext.GwtExt" />
<inherits name="com.dreg.ajax.smartgwt.dregSmartGwt" />
<inherits name="com.googlecode.gchart.GChart" />
<inherits name="com.dreg.i18n.dregI18n" />

  <source path='ui'/>
  <stylesheet src='css/dreg-tool.css'/>
  <entry-point class='com.dreg.at.ui.Main'/>
 
  <set-property name="gwt.suppressNonStaticFinalFieldWarnings" value="true" />
  <add-linker name="xsiframe"/>
</module>

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: [GWT] [ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core'

Hi guys, 

Any ideas/help with the following issue? 

Thanks. 

On Thursday, April 23, 2015 at 12:06:15 AM UTC-7, Danish Khan wrote:
Hi all, 

I am upgrading to GWT 2.7.0 / Smartgwt 5, and I am seeing the following error when I try to build it through maven: 

[GWT]    [ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core' either directly or indirectly (most often by inheriting module 'com.google.gwt.user.User')

Here is my gwt.xml. Please let me know if you have any suggestions to fix this error. 

<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='dregtool'>
<inherits name='com.google.gwt.user.User'/> 
<inherits name="com.google.gwt.core.Core" />
<inherits name="com.google.gwt.user.History"/> 
<inherits name="com.dreg.tools.ui.GWTFramework" />
<inherits name="com.dreg.at.atcommon.ATCommon" />
<inherits name="com.dreg.at.atcommon.smartgwt.Components" />
<inherits name="com.gwtext.GwtExt" />
<inherits name="com.dreg.ajax.smartgwt.dregSmartGwt" />
<inherits name="com.googlecode.gchart.GChart" />
<inherits name="com.dreg.i18n.dregI18n" />

  <source path='ui'/>
  <stylesheet src='css/dreg-tool.css'/>
  <entry-point class='com.dreg.at.ui.Main'/>
 
  <set-property name="gwt.suppressNonStaticFinalFieldWarnings" value="true" />
  <add-linker name="xsiframe"/>
</module>

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Re: can i use beanproxy from rpc?

here
com.google.gwt.user.client.rpc.SerializationException: could not get type signature for class com.webgocommerce.client.beanproxy.BdEmpresaProxyAutoBean_com_google_web_bindery_requestfactory_shared_impl_EntityProxyCategory_com_google_web_bindery_requestfactory_shared_impl_ValueProxyCategory_com_google_web_bindery_requestfactory_shared_impl_BaseProxyCategory$1


El jueves, 30 de abril de 2015, 9:41:08 (UTC-5), Jonathan Franchesco Torres Bca escribió:
Hi,

i want to use beanproxy with rpc.

something like that

public class UIBdEmpresaImpl extends UIBdEmpresa {
    private final ServiceExportarAsync servicioExportar = GWT.create(ServiceExportar.class);
    private UIHomeBdEmpresa uiHomeBdEmpresa;

    public UIBdEmpresaImpl(UIHomeBdEmpresa uiHomeBdEmpresa) {
        this.uiHomeBdEmpresa=uiHomeBdEmpresa;
        loadTable();
    }

    @Override
    public void loadTable() {
        popup.showPopup();
        ContextMantenimientoBdEmpresa context = FACTORY.contextMantenimientoBdEmpresa();
        FACTORY.initialize(EVENTBUS);
        String keyPublic = UISesion.keyPublic;
        Request<List<BdEmpresaProxy>> request = context.listar(keyPublic);
        request.fire(new Receiver<List<BdEmpresaProxy>>() {

            @Override
            public void onSuccess(List<BdEmpresaProxy> response) {
                grid.getSelectionModel().clear();
                grid.setData(response);
                popup.hidePopup();
                //lstBdEmpresa.setData(grid.getData());
            }
           
            @Override
            public void onFailure(ServerFailure error) {
                popup.hidePopup();
                //Window.alert(error.getMessage());
                Notification not=new Notification(Notification.WARNING,error.getMessage());
                not.showPopup();
            }
        });
    }
   
    @Override
    public void exportarData() {
        servicioExportar.exportar(grid.getData(),new AsyncCallback<Void>() {

            @Override
            public void onFailure(Throwable caught) {
                GWT.log(caught.getMessage(), caught);
            }

            @Override
            public void onSuccess(Void result) {
              
            }
        });

    }

public class GridBdEmpresa extends DataGrid<BdEmpresaProxy> {

    private List<BdEmpresaProxy> data = new ArrayList<BdEmpresaProxy>();
    ...


    public List<BdEmpresaProxy> getData() {
        return data;
    }

   
    ....
}


I have in following error:
com.webgocommerce.client.beanproxy.BdEmpresaProxyAutoBean_com_google_web_bindery_requestfactory_shared_impl_EntityProxyCategory_com_google_web_bindery_requestfactory_shared_impl_ValueProxyCategory_com_google_web_bindery_requestfactory_shared_impl_BaseProxyCategory



--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

can i use beanproxy from rpc?

Hi,

i want to use beanproxy with rpc.

something like that

public class UIBdEmpresaImpl extends UIBdEmpresa {
    private final ServiceExportarAsync servicioExportar = GWT.create(ServiceExportar.class);
    private UIHomeBdEmpresa uiHomeBdEmpresa;

    public UIBdEmpresaImpl(UIHomeBdEmpresa uiHomeBdEmpresa) {
        this.uiHomeBdEmpresa=uiHomeBdEmpresa;
        loadTable();
    }

    @Override
    public void loadTable() {
        popup.showPopup();
        ContextMantenimientoBdEmpresa context = FACTORY.contextMantenimientoBdEmpresa();
        FACTORY.initialize(EVENTBUS);
        String keyPublic = UISesion.keyPublic;
        Request<List<BdEmpresaProxy>> request = context.listar(keyPublic);
        request.fire(new Receiver<List<BdEmpresaProxy>>() {

            @Override
            public void onSuccess(List<BdEmpresaProxy> response) {
                grid.getSelectionModel().clear();
                grid.setData(response);
                popup.hidePopup();
                //lstBdEmpresa.setData(grid.getData());
            }
           
            @Override
            public void onFailure(ServerFailure error) {
                popup.hidePopup();
                //Window.alert(error.getMessage());
                Notification not=new Notification(Notification.WARNING,error.getMessage());
                not.showPopup();
            }
        });
    }
   
    @Override
    public void exportarData() {
        servicioExportar.exportar(grid.getData(),new AsyncCallback<Void>() {

            @Override
            public void onFailure(Throwable caught) {
                GWT.log(caught.getMessage(), caught);
            }

            @Override
            public void onSuccess(Void result) {
              
            }
        });

    }

public class GridBdEmpresa extends DataGrid<BdEmpresaProxy> {

    private List<BdEmpresaProxy> data = new ArrayList<BdEmpresaProxy>();
    ...


    public List<BdEmpresaProxy> getData() {
        return data;
    }

   
    ....
}


I have in following error:
com.webgocommerce.client.beanproxy.BdEmpresaProxyAutoBean_com_google_web_bindery_requestfactory_shared_impl_EntityProxyCategory_com_google_web_bindery_requestfactory_shared_impl_ValueProxyCategory_com_google_web_bindery_requestfactory_shared_impl_BaseProxyCategory



--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Default/Defender Method Support in JsInterop

Is support for defender/default methods planned to be support for JsInterop in GWT 2.8? The change to add general GWT support (https://gwt-review.googlesource.com/#/c/10330/) called out that JsInterop support would follow in a subsequent patch but I wasn't sure if it's targeted for 2.8 or not.

Cheers,
James

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Wednesday, April 29, 2015

Re: GWT Breadcrumb widget

gwtbootstrap3 <https://github.com/gwtbootstrap3/gwtbootstrap3> has a Breadcrumbs widget <https://gwtbootstrap3.github.io/gwtbootstrap3-demo/#breadcrumbs>, and you can probably customize the style/theme to make it look like http://bootsnipp.com/snippets/featured/triangle-breadcrumbs-arrows

On Wednesday, April 29, 2015 at 5:37:47 PM UTC+2, dhoffer wrote:
I need a Breadcrumb panel/widget are there any examples of this?  I'm also using GXT but even GXT doesn't have any Breadcrumb panel/widgets.  I need breadcrumb widgets that are arrow shaped on the right of each widget to give visual indication of the logical flow.  I just need widgets where I can set state, i.e. color as user gets to that state in the app.  I don't need the Breadcrumb panel to manage anything, just report state.  Any ideas/examples of this?

-Dave

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

GWT Breadcrumb widget

I need a Breadcrumb panel/widget are there any examples of this?  I'm also using GXT but even GXT doesn't have any Breadcrumb panel/widgets.  I need breadcrumb widgets that are arrow shaped on the right of each widget to give visual indication of the logical flow.  I just need widgets where I can set state, i.e. color as user gets to that state in the app.  I don't need the Breadcrumb panel to manage anything, just report state.  Any ideas/examples of this?

-Dave

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

@PerezHilton tweeted: Is this the most NSFW movie poster of all time!? Warning: Graphic Imagery!!

Perez Hilton
@PerezHilton
 
Is this the most NSFW movie poster of all time!? Warning: Graphic Imagery!! goo.gl/w21VBG
View on Twitter
Sarah Hyland
@Sarah_Hyland
 
Watch my brotha from anotha motha @BrandonSmithCEO & @TheEllenShow on the wildest #SeasonFinale Tonight@9:30 on #NBC
View on Twitter
Variety
@Variety
 
VH1 has left the crazy train and cancelled #TheOsbournes reality show revival. variety.com/2015/tv/news/v…
View on Twitter
Vanessa Hudgens
@VanessaHudgens
 
So proud of my girl @ashleytisdale. Can't wait to tune in! #clipped @ClippedTBS
View on Twitter
Alanna Masterson
@AlannaMasterson
 
Today is filled with overwhelming pride, but also sadness. This is the beautiful school rileykeough… instagram.com/p/2CNlVvAFD4/
View on Twitter
Who What Wear
@WhoWhatWear
 
Meet the blogger-approved brand we can't get enough of: wwwear.me/XOEs0gY
View on Twitter
Not what you're looking for?
Well there's more to see on Twitter! Click here to discover more interesting Tweets.
Explore