Friday, August 31, 2012

Super Dev Mode with multiple source folders

Hi folks,

I have a doubt with Super Dev Mode. I have a maven project that generate some sources in a target/generated-sources/gwt. I want to add this folder to the codeserver, but I see that only one folder I can add by parameter:

CodeServer [-bindAddress address] [-port port] [-workDir dir] [-src dir] [module] 

Is possible to use more than one folder to the CodeServer?

Thanks,
Juan



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

Re: any chance to get FF15 dev plugin

Thanks Brian!!

2012/8/31 Brian Slesinsky <skybrian@google.com>
The missing plugin page is updated now.

http://gwt.google.com/missing-plugin/MissingPlugin.html


On Friday, August 31, 2012 10:18:48 AM UTC-7, Brian Slesinsky wrote:

I still need to update the missing plugin page.

On Thursday, August 30, 2012 5:20:37 PM UTC-7, Brian Slesinsky wrote:
Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.

- Brian

--
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/-/5ySdoW3bhXYJ.

To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

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

Re: any chance to get FF15 dev plugin

The missing plugin page is updated now.

http://gwt.google.com/missing-plugin/MissingPlugin.html

On Friday, August 31, 2012 10:18:48 AM UTC-7, Brian Slesinsky wrote:

I still need to update the missing plugin page.

On Thursday, August 30, 2012 5:20:37 PM UTC-7, Brian Slesinsky wrote:
Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.

- Brian

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

IsEditor and Editor hasErrors always false problem, and getErrors always empty

Hi Everyone,
I am stuck with validating objects. So if anyone can help me or point me to the right direction that would be great.

I have following code:

SettingsViewImpl.ui.xml

<!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:c="urn:import:com.google.gwt.user.cellview.client"
    xmlns:w="urn:import:com.hat.coupled.client.ui.widget"
    xmlns:b="urn:import:com.github.gwtbootstrap.client.ui"
    xmlns:customPanel="urn:import:com.hat.coupled.client.ui.panel.disclosure"
    xmlns:customPanelHeader="urn:import:com.hat.coupled.client.ui.widget.header">
   
    <ui:image field="dpheaderbackground" />
   
    <ui:style>
        .disclosurePanelStyle {
            width: 100%;
            display: block;
            position: relative;
        }

        @sprite .disclosurePanelHeaderTextWrapperStyle {
            gwt-image: 'dpheaderbackground';
            background-repeat: repeat-x;
            background-position: 30px center;
            height: auto;
            width: 100%;
        }

        .disclosurePanelHeaderTextStyle {
            font-size: 13pt;
            line-height: 18pt;
            background-color: #F5F5F5;
            height: auto;
            width: auto;
            float: left;
            padding-right: 5px;
            padding-left: 5px;
        }

        .disclosurePanelHeaderStyle {
            margin-bottom: 10px;
        }
    </ui:style>
    <b:FluidContainer>
        <b:FluidRow ui:field="settingsPanelRow">
            <b:ButtonToolbar ui:field="buttonToolbar">
                <b:ButtonGroup>
                    <b:Button ui:field="backButton" icon="ARROW_LEFT">Back</b:Button>
                </b:ButtonGroup>
                <b:ButtonGroup>
                    <b:Button ui:field="saveButton" icon="SAVE" type="DANGER">Save</b:Button>
                </b:ButtonGroup>
            </b:ButtonToolbar>
        </b:FluidRow>
       
        <b:FluidRow ui:field="alertMessageWrapper">
            <!-- placeholder for alerts -->
        </b:FluidRow>
       
        <b:FluidRow ui:field="globalSettings">
                <b:Well>
                    <customPanel:DisclosurePanelWithDragHandler header="Global Site Settings"
                        width="100%" height="100%" animationEnabled="true"
                        open="true" isDraggable="false"
                        addHeaderTextWrapperStyleNames="{style.disclosurePanelHeaderTextWrapperStyle}"
                        addHeaderTextStyleNames="{style.disclosurePanelHeaderTextStyle}"
                        addHeaderStyleNames="{style.disclosurePanelHeaderStyle}"
                        >
                        <b:Form type="HORIZONTAL" ui:field="siteConfigForm">
                            <b:Fieldset>
                                <b:ControlGroup>
                                    <b:ControlLabel for="siteName">Site Name</b:ControlLabel>
                                    <b:Controls controlsRow="true">
                                           <b:Tooltip text='Site name is text that will be displayed in the browser titlebar' trigger="FOCUS" placement="RIGHT">
                                            <b:TextBox alternateSize="XLARGE" b:id="siteName"
                                                ui:field="siteName"></b:TextBox>
                                        </b:Tooltip>
                                    </b:Controls>
                               
                                    <b:ControlLabel for="siteEmail">Site Email</b:ControlLabel>
                                    <b:Controls controlsRow="true">
                                        <b:Tooltip text='Email that will be used to send all kind of information' trigger="HOVER" placement="RIGHT">
                                            <b:TextBox alternateSize="XLARGE" b:id="siteEmail"
                                            ui:field="siteEmail"></b:TextBox>
                                        </b:Tooltip>
                                    </b:Controls>
                           
                                    <b:ControlLabel for="contactEmail">Contact Email</b:ControlLabel>
                                    <b:Controls controlsRow="true">                                   
                                        <b:TextBox alternateSize="XLARGE" b:id="contactEmail"
                                            ui:field="contactEmail"></b:TextBox>
                                    </b:Controls>
                                    <b:ControlLabel for="favicon">Favicon</b:ControlLabel>
                                    <b:Controls controlsRow="true">                                   
                                        <b:TextBox alternateSize="XLARGE" b:id="favicon"
                                            ui:field="favicon"></b:TextBox>
                                    </b:Controls>
                                   
                                    <b:ControlLabel for="textDirection">Text Direction</b:ControlLabel>
                                    <b:Controls controlsRow="true">
                                     <b:ValueListBox alternateSize="SMALL" ui:field="textDirection">
                                         <!-- This is dropdown box for text direction -->
                                     </b:ValueListBox>
                                     </b:Controls>
                                    <b:Controls>
                                        <b:Button ui:field="resetGlobalSiteSettingsButton">Reset</b:Button>
                                         <b:Button ui:field="saveGlobalSiteSettingsButton" icon="SAVE" type="DANGER">Save</b:Button>
                                    </b:Controls>                                        
                                </b:ControlGroup>
                            </b:Fieldset>
                        </b:Form>
                    </customPanel:DisclosurePanelWithDragHandler>
                </b:Well>
            </b:FluidRow>
           
            <b:FluidRow>
                <b:Well>
                    <customPanel:DisclosurePanelWithDragHandler header="Global Site Settings"
                        width="100%" height="100%" animationEnabled="true"
                        open="true" isDraggable="false"
                        addHeaderTextWrapperStyleNames="{style.disclosurePanelHeaderTextWrapperStyle}"
                        addHeaderTextStyleNames="{style.disclosurePanelHeaderTextStyle}"
                        addHeaderStyleNames="{style.disclosurePanelHeaderStyle}"
                        >
                        <b:Form type="HORIZONTAL">
                            <b:Fieldset>
                                <b:ControlGroup>
                                    <b:ControlLabel for="blaBla">Site Name</b:ControlLabel>
                                    <b:Controls controlsRow="true">
                                        <b:TextBox alternateSize="XLARGE" b:id="blaBla"></b:TextBox>
                                    </b:Controls>
                                </b:ControlGroup>
                            </b:Fieldset>
                        </b:Form>
                    </customPanel:DisclosurePanelWithDragHandler>
                </b:Well>
            </b:FluidRow>       
    </b:FluidContainer>
</ui:UiBinder>



SettingsViewImpl.java

package com.hat.coupled.client.ui;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import com.github.gwtbootstrap.client.ui.Alert;
import com.github.gwtbootstrap.client.ui.Button;
import com.github.gwtbootstrap.client.ui.ButtonToolbar;
import com.github.gwtbootstrap.client.ui.FluidContainer;
import com.github.gwtbootstrap.client.ui.Dropdown;
import com.github.gwtbootstrap.client.ui.FluidRow;
import com.github.gwtbootstrap.client.ui.Form;
import com.github.gwtbootstrap.client.ui.ValueListBox;
import com.google.gwt.core.client.GWT;
import com.google.gwt.editor.client.EditorDelegate;
import com.google.gwt.editor.client.EditorError;
import com.google.gwt.editor.client.IsEditor;
import com.google.gwt.editor.ui.client.adapters.ValueBoxEditor;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.text.shared.Renderer;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.History;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.ListBox;
import com.google.gwt.user.client.ui.Widget;

import com.github.gwtbootstrap.client.ui.TextBox;
import com.github.gwtbootstrap.client.ui.WellForm;
import com.hat.coupled.client.domain.ClientConfig;

public class SettingsViewImpl implements SettingsView {

    interface SettingsViewImplUiBinder extends UiBinder<FluidContainer, SettingsViewImpl> {
    }

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

    private Presenter                        presenter;

    private final FluidContainer            settingsContainer;

    @UiField
    FluidRow                                alertMessageWrapper;
   
    @UiField
    ButtonToolbar                            buttonToolbar;
    @UiField
    Button                                    backButton;
    @UiField
    Button                                    saveButton;

    @UiField
    Form                                    siteConfigForm;
    @UiField(provided = true)
    ValueListBox                            textDirection;
    @UiField
    TextBox                                    siteName;
    @UiField
    TextBox                                    siteEmail;
    @UiField
    TextBox                                    contactEmail;
    @UiField
    TextBox                                    favicon;
    @UiField
    Button                                    saveGlobalSiteSettingsButton;
    @UiField
    Button                                    resetGlobalSiteSettingsButton;

    public SettingsViewImpl() {

        textDirection = new ValueListBox<String>(new Renderer<String>() {

            public void render(String object, Appendable appendable) throws IOException {
                appendable.append(render(object));
            }

            public String render(String object) {
                return object;
            }
        });
        settingsContainer = uiBinder.createAndBindUi(this);

        backButton.addClickHandler(new ClickHandler() {
            public void onClick(ClickEvent event) {
                History.back();
            }
        });

    }

    public Widget asWidget() {
        return settingsContainer;
    }

    public void setPresenter(Presenter presenter) {
        this.presenter = presenter;
    }

    public void reset() {
        // TODO implement reset method
    }

    public Boolean save() {
        // TODO Auto-generated method stub
        return null;
    }

    public FluidRow getAlertMessageWrapper() {
        return alertMessageWrapper;
    }
   
    public Button getSaveButton() {
        return saveButton;
    }

    public Button getSaveGlobalSiteSettingsButton() {
        return saveGlobalSiteSettingsButton;
    }

    public Button getResetGlobalSiteSettingsButton() {
        return resetGlobalSiteSettingsButton;
    }

    public ValueListBox<String> getTextDirectionEditor() {
        return textDirection;
    }

    public IsEditor<ValueBoxEditor<String>> getSiteNameEditor() {
        return siteName;
    }

    public IsEditor<ValueBoxEditor<String>> getSiteEmailEditor() {
        return siteEmail;
    }

    public IsEditor<ValueBoxEditor<String>> getContactEmailEditor() {
        return contactEmail;
    }

    public IsEditor<ValueBoxEditor<String>> getFaviconEditor() {
        return favicon;
    }

    public void showErrors(List<EditorError> errors) {
        Window.alert("ShowErrors" + errors.size());
        StringBuilder strBuilder = new StringBuilder();
        for (EditorError error : errors) {
            Window.alert(error.getAbsolutePath());
            strBuilder.append(error.getMessage()).append(error.getAbsolutePath());
        }
        Window.alert(strBuilder.toString());
    }

//    public void setDelegate(EditorDelegate<ClientConfig> delegate) {
//        delegate.recordError("kurac", new ClientConfig(), null);   
//    }
   
}

SettingsView.java

package com.hat.coupled.client.ui;

import java.util.List;

import com.github.gwtbootstrap.client.ui.Alert;
import com.github.gwtbootstrap.client.ui.Button;
import com.github.gwtbootstrap.client.ui.FluidRow;
import com.github.gwtbootstrap.client.ui.ValueListBox;
import com.google.gwt.editor.client.Editor;
import com.google.gwt.editor.client.HasEditorDelegate;
import com.google.gwt.editor.client.HasEditorErrors;
import com.google.gwt.editor.client.IsEditor;
import com.google.gwt.editor.client.Editor.Path;
import com.google.gwt.editor.ui.client.adapters.ValueBoxEditor;
import com.google.gwt.user.client.ui.IsWidget;
import com.hat.coupled.client.domain.ClientConfig;

public interface SettingsView extends IsWidget, Editor<ClientConfig>,
    HasEditorErrors<ClientConfig> {
   
    void setPresenter(Presenter presenter);

    public interface Presenter {
       
    }
   
    @Path("textDirection")
    ValueListBox<String> getTextDirectionEditor();
   
    @Path("siteName")
    IsEditor<ValueBoxEditor<String>> getSiteNameEditor();
   
    @Path("siteEmail")
    IsEditor<ValueBoxEditor<String>> getSiteEmailEditor();
   
    @Path("contactEmail")
    IsEditor<ValueBoxEditor<String>> getContactEmailEditor();
   
    @Path("favicon")
    IsEditor<ValueBoxEditor<String>> getFaviconEditor();
   
    public void reset();
    public Boolean save();
   
    public FluidRow getAlertMessageWrapper();
   
    public Button getSaveButton();
   
    public Button getSaveGlobalSiteSettingsButton();
    public Button getResetGlobalSiteSettingsButton();
   
}


ClientConfig.java

package com.hat.coupled.client.domain;

import javax.validation.Valid;
import javax.validation.constraints.Max;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Pattern;
import javax.validation.constraints.Size;


public class ClientConfig {
    private Integer siteId;
   
    @NotNull
    private String textDirection = "ltr";
   
    @NotNull(message="bla bla bla")
    @Max(10)
    @Size(min = 3, max=10, message="size bla bla bla")
    private String siteName;
   
    @Size(min=7, max=100)
    @NotNull(message="site email is not set")
    @Pattern(regexp="\\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}\\b", message="email not valid")
    private String siteEmail;
   
    @Size(min=7, max=100)
    @NotNull(message="site email is not set")
    @Pattern(regexp="\\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}\\b", message="email not valid")
    private String contactEmail;
   
    private String favicon;

}


Each time, when I try to validate form, for example making Site Name empty i don't get any error message

i am validating using following code in my activity class:

                    ClientConfig config = editor.flush();
                    if (editor.hasErrors()) {
                        Window.alert("has errors");
                        List<EditorError> errors = editor.getErrors();
                        StringBuilder strBuilder = new StringBuilder();
                        for (EditorError error : errors) {
                            strBuilder.append(error.getMessage()).append(error.getAbsolutePath());
                        }
                    } else {
                        saveConfig(config);
                    }


Does anyone know why there are not error messages in editor.getErrors() and editor.hasErrors() is not being set to true.

Thanks,
Milan

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

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

In sample/pom.xml, add the following after line 34 (after "<artifactId>gwt-maven-plugin</artifactId>"):

<version>${gwtversion}</version>

Then add the following between "</plugins>" and "</build>" (following line 71 after the first step):

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</pluginManagement>

These are problems with the POM and should be fixed in the original project.

-Abraham


On Friday, August 31, 2012 3:40:58 PM UTC-4, koma wrote:
Hi Hilco,

thx for the advice ...

I am anything but a maven expert, this is a 3rd party project I am trying to include.

Can you give me some pointers on how to do that ?

or a sample of a GWT maven project done right ?

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

Problem - Images are not displayed

Hallo,

I am new to GWT so this might be a stupid question. I am trying to familiarize myself with GWT and wanted to build a simple UI using the UIBinder. For starters I wanted to try a simple layout using the DockLayoutPanel with a logo at the top and some images that are supposed to be used as navigation on the left. I thought I understood the process (it seemed straightforward enough), but for some reason only the images on the top are displayed, the images in the left side are not.

All images are saved using the same format (PNG).

Here is the relevant part of the XML (interestingly enough the images are displayed when I switch to design mode in Eclipse):

<ui:with field="res" type="com.gwttest.client.Resources" />
<g:DockLayoutPanel>

<g:north size="200" unit="px">
<g:HorizontalPanel>
<g:Image resource="{res.imgLogo}"/>
<g:Image resource="{res.imgHeading}"/>
</g:HorizontalPanel>
</g:north>
<g:west size="200" unit="px">
<g:VerticalPanel>
<g:Image resource="{res.button1}"/>
<g:Image resource="{res.button2}"/>
<g:Image resource="{res.button3}"/>
</g:VerticalPanel>
</g:west>
<g:center>
<g:HTML>
Content goes here
</g:HTML>
</g:center>
</g:DockLayoutPanel>

When I look at the javascript console in chrome I can under "Resources" that all images are there. When I dig into the Code under "Elements" i see that the images have been replaced with an image called "clear.cache.gif".

Can someone please tell me what I am doing wrong?

Thank you very much

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

Re: DFP in GWT/GAE application

Hi, 

I am also interested by the answer ;p ...

Does anybody has a feedback to offer about integrating DFP (Double Click for Publisher)  with GWT / GAE ?

Cheers,

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

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

Hi Hilco,

thx for the advice ...

I am anything but a maven expert, this is a 3rd party project I am trying to include.

Can you give me some pointers on how to do that ?

or a sample of a GWT maven project done right ?

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

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

On 31 August 2012 12:25, koma <koen@koma.be> wrote:
> adding this :
>
> <plugin>
> <artifactId>gwt-maven-plugin</artifactId>
> <version>2.4.0</version>
> </plugin>
>
> to the plugin section, does not help.

Add the groupId?

> Still seeing this :
>
> [INFO] --- gwt-maven-plugin:2.5.0-rc1:compile (default) @ chosen-sample ---

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

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

On 31 August 2012 12:13, koma <koen@koma.be> wrote:
> I can see I have two mvn plugins in my .m2 repo :
>
> ./org/codehaus/mojo/gwt-maven-plugin/2.4.0
> and
> ./org/codehaus/mojo/gwt-maven-plugin/2.5.0-rc1
>
> How do I tell maven from taken the correct one ?

The plugin version for the GWT Maven plugin isn't properly locked down
in the POM. In fact, nothing has been locked down. Without locking
down versions these are the problems you get.

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

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

adding this :

<plugin>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
</plugin>

to the plugin section, does not help.

Still seeing this :

[INFO] --- gwt-maven-plugin:2.5.0-rc1:compile (default) @ chosen-sample ---


MFG !!! (you do not want to know what that acronym means !)

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

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

I can see I have two mvn plugins in my .m2 repo :

./org/codehaus/mojo/gwt-maven-plugin/2.4.0
 and
./org/codehaus/mojo/gwt-maven-plugin/2.5.0-rc1

How do I tell maven from taken the correct one ?
I guess that is just basic maven usage knowledge but ant never troubled me with this kind of @#!! (dirty words).

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

building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

Hi

I am trying to build a GWT project that is on github with maven, but I run into an error saying that the maven plugin requires at least 2.5.0-rc1 ... is that so ?


Can somebody shed some light on what might be going wrong locally for me, the project owner does not suffer from this problem.

My environment :

Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)
Maven home: /home/koen/apache-maven-3.0.4
Java version: 1.6.0_31, vendor: Sun Microsystems Inc.
Java home: /usr/lib/jvm/jdk1.6.0_31/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "3.2.0-29-generic", arch: "amd64", family: "unix"

This is the error that maven spits out :

[WARNING] You're project declares dependency on gwt-user 2.4.0. This plugin is designed for at least gwt version 2.5.0-rc1  [WARNING] Don't declare gwt-dev as a project dependency. This may introduce complex dependency conflicts  [WARNING] You're project declares dependency on gwt-user 2.4.0. This plugin is designed for at least gwt version 2.5.0-rc1  [ERROR] Unknown argument: -XfragmentCount  [ERROR] Google Web Toolkit 2.4.0  [ERROR] Compiler [-logLevel level] [-workDir dir] [-gen dir] [-style style] [-ea] [-XdisableClassMetadata] [-XdisableCastChecking] [-validateOnly] [-draftCompile] [-optimize level] [-compileReport] [-strict] [-localWorkers count] [-war dir] [-deploy dir] [-extra dir] module[s] 

PS: did I mention I hate maven for always being so self righteous...?

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

IE 7 / 8 issue


Hi,

GWT 2.5 RC1

Based on an even , i am opeing a popupPanel(true, false);

It is working fine on all browsers except IE 7 & 8. It calls the event handle twice and opens two popup.

Apart from this, While collecting the data for popup panel, it throws exception 'Incompatible / Invalid procedure call'.

It happens on running compiled app.

I am unable to debug this. Pls help me out.


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

Re: any chance to get FF15 dev plugin

This is live at: https://dl-ssl.google.com/gwt/plugins/firefox/gwt-dev-plugin.xpi

I still need to update the missing plugin page.

On Thursday, August 30, 2012 5:20:37 PM UTC-7, Brian Slesinsky wrote:
Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.

- Brian

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

Re: GwtChosen: make your select boxes much more user-friendly

Awesome. I was fearing I'd have to roll my own like I did for ExtJs. Great work.

Sincerely,
Joseph

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

Re: GWT Maps V3 Api, clearing directions

Jonas,

Can you please posit your issue on the GitHub tracker and we'll look into it. :)

https://github.com/branflake2267/GWT-Maps-V3-Api/issues?direction=desc&sort=created&state=open


Sincerely,
Joseph

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

Re: com.google.gwt.junit.client.TimeoutException: The browser did not contact the server within 60000ms.

For the next poor soul - this started happening to me as soon as I moved from Java 6 (where my GWTTestCases worked fine) to Java 7. 

I know, I know, don't use GWTTestCases.  We learned that the hard way.  We have a couple of legacy ones that we never converted into Selenium tests.  Well, I guess this will force us to convert them now.

Ryan

On Monday, November 2, 2009 7:20:03 AM UTC-6, Dominik Steiner wrote:
I haven't tried the UiBinder yet, but if i remember right I read
somewhere that it is now prefered to use HtmlUnit tests instead of
using the GWTTestCase.

HTH

Dominik

On Oct 31, 9:49 am, Tiago Fernandez <tiago...@gmail.com> wrote:
> Hello,
>
> I have a fully working webapp built with GWT-2.0.0-ms2's UiBinder.
> Recently I decided to get it covered by unit tests using GWTTestCase,
> but after coding a simple test case:
>
> public class MyTest extends GWTTestCase {
>
>   @Override public String getModuleName() {
>     return "foo.bar.MyApp";
>   }
>
>   public void testAnythingYouWant() {
>     assertTrue(true);
>   }
>
> I stumbled on this:
>
> com.google.gwt.junit.client.TimeoutException: The browser did not
> contact the server within 60000ms.
>  - 1 client(s) haven't responded back to JUnitShell since the start of
> the test.
>  Actual time elapsed: 60.009 seconds.
>
>         at com.google.gwt.junit.JUnitShell.notDone(JUnitShell.java:800)
>         at com.google.gwt.junit.JUnitShell.runTestImpl(JUnitShell.java:989)
>         at com.google.gwt.junit.JUnitShell.runTest(JUnitShell.java:436)
>         at com.google.gwt.junit.client.GWTTestCase.runTest(GWTTestCase.java:
> 386)
>         at com.google.gwt.junit.client.GWTTestCase.run(GWTTestCase.java:269)
>         at com.intellij.junit3.JUnit3IdeaTestRunner.doRun
> (JUnit3IdeaTestRunner.java:108)
>         at com.intellij.rt.execution.junit.JUnitStarter.main
> (JUnitStarter.java:60)
>
> Process finished with exit code 255
>
> The same test works fine when targeting a module NOT UiBinder-based.
>
> Any hint? I am using IDEA on a Mac, with the following VM arguments:
> -XstartOnFirstThread -Xmx512M
>
> Thanks in advance,
> Tiago Fernandez

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

About share experience on GWT.

Anyone know if there any website has example of GWT sites. 

I am now no longer work on GWT, but i would like to share my experience, e.g. code and example, because I do like this tech. And hope it could be popular.

Below two website are final things I worked on GWT. Also code, now finding place to post onto.

http://openpfs.wordpress.com/


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

ImageResource loading

Hi all,

I have a ClientBundle containing one ImageResource.
Then i create an Image from this ImageResource :

Image img = new Image(myImageResource);

I set on the image a LoadHandler and ErrorHandler to manage loading events.
To launch the image loading, i have to attach the image to the RootLayoutPanel.

Is there a way to force the image loading without attaching it to RootLayoutPanel ?

Regards,
Harold

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

Re: GWT Maps V3 Api, clearing directions

I have the same question please any one can help?

On Friday, 31 August 2012 12:47:02 UTC+1, Jonas wrote:
I'm using the GWT Maps V3 Api from https://github.com/branflake2267/GWT-Maps-V3-Api

After finding directions on the map, I'm trying to clear the previous ones before finding new.

In DirectionsRenderer:

  /**
   * This method specifies the map on which directions will be rendered. Pass null to remove the directions from the map.
   * @param mapWidget
   */
  public final void setMap(MapWidget mapWidget) {
    setMapImpl(mapWidget.getJso());
  }

  private final native void setMapImpl(MapImpl map) /*-{
    this.setMap(map);
  }-*/;

I'm trying to pass:

directionsDisplay.setMap(null);

which results in NPE:

Caused by: java.lang.NullPointerException: null
    at com.google.gwt.maps.client.services.DirectionsRenderer$.setMap$(DirectionsRenderer.java:50)

Anyone used this API and knows how to clear directions from the map widget?

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

GWT Maps V3 Api, clearing directions

I'm using the GWT Maps V3 Api from https://github.com/branflake2267/GWT-Maps-V3-Api

After finding directions on the map, I'm trying to clear the previous ones before finding new.

In DirectionsRenderer:

  /**
   * This method specifies the map on which directions will be rendered. Pass null to remove the directions from the map.
   * @param mapWidget
   */
  public final void setMap(MapWidget mapWidget) {
    setMapImpl(mapWidget.getJso());
  }

  private final native void setMapImpl(MapImpl map) /*-{
    this.setMap(map);
  }-*/;

I'm trying to pass:

directionsDisplay.setMap(null);

which results in NPE:

Caused by: java.lang.NullPointerException: null
    at com.google.gwt.maps.client.services.DirectionsRenderer$.setMap$(DirectionsRenderer.java:50)

Anyone used this API and knows how to clear directions from the map widget?

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

RequestFactory collects request calls after onConstraintViolation

Hi,

I have the following method in my activity:

public void rejectBankCheck(String remarks) {
request.rejectBankCheck(entity, remarks)
.fire(new Receiver<ProtocolProxy>() {

@Override
public void onSuccess(ProtocolProxy response) {
display.onRejectSuccess();
}
@Override
public void onConstraintViolation(Set<ConstraintViolation<?>> violations) {
display.setConstraintViolations(violations);
}
});
}

On the UI, the user enters remarks and clicks on a button. This invokes rejectBankCheck() on the activity. The current request is now fired with the associated receiver. It happens that there are constraint violations which the user then corrects and reclicks on the button. This time, the receiver gets onSuccess(), so everything seems to be correct. But I can now see that, in this case, onSuccess() and the corresponding service method of rejectBankCheck() are called twice. Or several times if the user doesn't correct the constraint violations after the first call. This means that the request calls are collected by the requestcontext.

My first intention was to split this into two steps:
  1. Initialize the requestcontext when the activity starts: request.rejectBankCheck(entity, remarks).to(new Receiver...
  2. Call request.fire() when the user clicks on the button
This unfortunately isn't possible, since the parameter remarks (entered by the user) can change between two invocations.

Now my questions:
  1. Is this behaviour a bug or a feature of the request factory? I can't see where this would be useful. If it's a bug, I'll open an issue
  2. Can anyone see a workaround for this?

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

How apply different style to EditTextCell after editing the cell

I have a CellTable with EditTextCell. I will edit cells and submit all changes at a time to server.

My requirement is, After editing the cell, when i am coming out of the cell its just like normal any other cell. I want to differentiate the edited cells and non edited cells. So i want to apply different style after cell edited

I don't have any clue how can i achieve?

Can anybody please respond to this. Thanks, Saritha

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

Re: Invalid JSNI method reference



On Thursday, August 30, 2012 7:48:52 PM UTC+2, Steve C wrote:
For the method you're using, you could make it more general-purpose:

public static void messageBox( String sTitle, Object message )
{
Window.alert( sTitle + " | " + message.toString() );
}


@com.ecopy.gwt.client.Utils::messageBox(Ljava/lang/String;,Ljava/lang/Object;)("TheTitle", 99.999);

And I believe that AutoBoxing will take care of the double-to-Double conversion, but haven't actually tested that.

AFAICT, it won't. You'd have to use @java.lang.Double::valueOf(99.999)
 

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

Re: GwtChosen: make your select boxes much more user-friendly

Very cool widgets.

Thanks.

On Fri, Aug 31, 2012 at 1:07 PM, Celinio <cel975@gmail.com> wrote:
Very cool. Thanks.
I was looking for such a widget.
Too bad it does not support IE 7 though.
"All modern browsers are supported (Firefox, Chrome, Safari and IE9). Legacy support for IE8 is also enabled. On IE6 and IE7, we fall back on normal html select element."

Will you work on a version that supports IE 7 ?


On Tue, Aug 28, 2012 at 10:34 PM, Julien Dramaix <julien.dramaix@gmail.com> wrote:
Dear community, 

I just released the first version of GwtChosen. GwtChosen is the 
entire rewritte in Google Web Toolkit of the Chosen component 
(http://harvesthq.github.com/chosen/) making this nice component 
available for all GWT developers. 

It is available as a +GwtQuery plugin or as a widget. 

Check the example and doc : http://jdramaix.github.com/gwtchosen/ 

Julien 

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

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



--
Deepak Chauhan....

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

Re: GwtChosen: make your select boxes much more user-friendly

Very cool. Thanks.
I was looking for such a widget.
Too bad it does not support IE 7 though.
"All modern browsers are supported (Firefox, Chrome, Safari and IE9). Legacy support for IE8 is also enabled. On IE6 and IE7, we fall back on normal html select element."

Will you work on a version that supports IE 7 ?

On Tue, Aug 28, 2012 at 10:34 PM, Julien Dramaix <julien.dramaix@gmail.com> wrote:
Dear community, 

I just released the first version of GwtChosen. GwtChosen is the 
entire rewritte in Google Web Toolkit of the Chosen component 
(http://harvesthq.github.com/chosen/) making this nice component 
available for all GWT developers. 

It is available as a +GwtQuery plugin or as a widget. 

Check the example and doc : http://jdramaix.github.com/gwtchosen/ 

Julien 

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

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

Re: GwtChosen: make your select boxes much more user-friendly

Agreed, awesome work.

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

is it possible to migrate the existing gwt module as a jar?

origin design:
DB > class in a jar package > GWT module
new design:
DB > class in a jar package > previous GWT module packed in a jar package > a new GWT module

is this possible to packed the current GWT module as a jar and then new a new GWT module and call the previous GWT module which is already packed as a jar?


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

Thursday, August 30, 2012

Re: SmartScreen Filter performance issue in IE8

 
Hi,
For anyone who is interested, we got to the bottom of the problem.  It is a combination of having smart screen filter on, the afore mentioned line and having a reference like this in your CSS:-

img.iefix { behavior: url(iefix.htc); }

But missing the .htc file on the server.

When we removed this line (or ensured that the link was there) it just worked.  Not entirely sure why the setEventListenter line affects this code, I would have expected  the impact would be there with or without the line, but it is not.  IE never ceases to amaze and confound me.

Anyway, thought I would add this information in case some other unfortunate soul had the misfortune of replicating this very specific situation.

Cheers.

Kamal.

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

GWT plugin does not load in Chrome Canary build.

I'm using Chrome Canary build (Version 23.0.1251.1 canary). When I try to load a dev mode plugin chrome fails to load it. I keep getting message "Could not load GWT dev mode plugin" and in the console I get following errors

[24444:-1391222080:127017415849516:ERROR:webplugin_delegate_proxy.cc(407)] PluginMsg_Init returned false
[24444:-1391222080:127017509838691:ERROR:webplugin_impl.cc(269)] Couldn't initialize plug-in

Btw I used "--enable-easy-off-store-extension-install" flag to be able to install the plugin....

/Applications/Google\ Chrome\ Canary.app/Contents/MaS/Google\ Chrome\ Canary --enable-easy-off-store-extension-install --user-data-dir=~/.test

Has anyone been able to get GWT dev mode working in latest canary build?


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

Re: GWT Frame Load Wrong Page in IE 8 (Different Than The URL Showed In URL Toolbar)

Anyone can help me? Still no luck with this problem... :(

On Monday, August 27, 2012 8:43:36 AM UTC+7, the.wizard wrote:
Hello everyone,
I have a GWT Application that use couple of GWT Frame to load other site content. Let say in the left side of my application I have tree menu, and every time user click one of those menu, it will open a new tab in the right side of my application, and in the tab item, it will load other site content. Let say first I click tree menu A1, the application then open a new tab item in the right site with URL http://application.first.com/first.aspx. After that I click the other tree menu B1, the application then open a new tab item in the right side with URL http://application.first.com/second.aspx. After that, I hit the F5 key, and the browser reload again. Then I repeat the step from the beginning, when I click tree menu A1, the application open a new tab item in the right side, but the content that loaded is from http://application.first.com/second.aspx, but when I do right click in the frame area, it will show me that the currently accessed URL is http://application.first.com/first.aspx.
Have anyone ever experience this problem? Because I really stuck in here, the other major browser working just fine (FF and Chrome), only IE 8 that give me this problem. Any comment and advice will be appreciated.
Thanks.

Regards,
the.wizard

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

Re: GwtChosen: make your select boxes much more user-friendly

+1 looks great

On Wednesday, August 29, 2012 8:59:51 AM UTC+10, Chris Lercher wrote:
Very useful. Great widget.

On Tuesday, August 28, 2012 10:34:09 PM UTC+2, Julien Dramaix wrote:
Dear community, 

I just released the first version of GwtChosen. GwtChosen is the 
entire rewritte in Google Web Toolkit of the Chosen component 
(http://harvesthq.github.com/chosen/) making this nice component 
available for all GWT developers. 

It is available as a +GwtQuery plugin or as a widget. 

Check the example and doc : http://jdramaix.github.com/gwtchosen/ 

Julien 

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

Unable to create "GWT Library" using 3.7 and Eclipse Indigo.

Hi -

Trying to create a new GWT Library project for UI components that are to be reused across multiple GWT projects - I would think this is a very common thing.  However I cannot find the wizzard or any information for that matter on how to do this.  Maybe this was added in a later version, as I said I am on 3.7.  But in the link below it shows a screenshot of Eclipse Wizards that looks nothing like what I am looking at.  I am surprised there isn't more info about this out there.

https://developers.google.com/web-toolkit/tools/gwtdesigner/wizards/gwt/library

I have only the following options:

Google -->
    Web Application Project

Google Web Toolkit -->
    Client Bundle
    Entry Point Class
    HTML Page
    Module
    UiBinder

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