Skip to content
This repository was archived by the owner on Aug 5, 2019. It is now read-only.

After reseted the button, setText of the button will throw exception #361

Open
thesadboy opened this issue May 21, 2013 · 4 comments
Open
Labels

Comments

@thesadboy
Copy link

Code follow:

    public void onModuleLoad()
    {
        final Button btn1 = new Button("aaaa");
        btn1.setLoadingText("Loading");
        btn1.addClickHandler(new ClickHandler()
        {
            @Override
            public void onClick(ClickEvent event )
            {
                btn1.state().loading();
            }
        });
        final Button btn2 = new Button("bbbb");
        btn2.addClickHandler(new ClickHandler()
        {

            @Override
            public void onClick(ClickEvent event )
            {
                btn1.state().reset();
                btn1.setText("cccc");
            }
        });
        RootPanel.get().add(btn1);
        RootPanel.get().add(btn2);
    }

When i click btn2 after clicked btn1, the console will throw the exception of "
com.google.gwt.event.shared.UmbrellaException: Exception caught: (TypeError) @com.google.gwt.dom.client.Node::removeChild(Lcom/google/gwt/dom/client/Node;)([JavaScript object(14)]): Object [object Window] has no method 'removeChild' ", and the text of btn1 will be still "aaaa".
@caarlos0
Copy link
Contributor

It looks like a Bootstrap buttons plugin exception.
Can you try to reproduce it with vanilla js and bootstrap?

Thanks

@thesadboy
Copy link
Author

Thanks for your response, but I think there is no method of "setText()" in Bootstrap button plugin. In this case, I've tried to call "reset()" after "setText()", but thrown the same exception.

@caarlos0
Copy link
Contributor

weird...

@rastaman
Copy link
Contributor

rastaman commented Aug 7, 2013

Could you try the latest snapshot with the fix of issue 451 ? I'm pretty sure it should resolve your problem.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

3 participants