0

我正在使用 GWT 2.4、SmartGWT 3.0、GWTP 0.7。

我主要尝试将 SmartGWT 小部件用于我的布局,但我正在尝试将 GWT 小部件(可以是从 MapWidget 到来自 HighCharts 的 ChartWidget 或 GWT 标签的任何东西)添加到 SmartGWT 选项卡集中的选项卡。然后我得到以下异常:

Caused by: java.lang.AssertionError: A widget that has an existing parent widget may not be added to the detach list

这仅在开发模式下发生。在生产中,断言已被关闭,并且我的小部件确实出现了,但它无法在开发模式下进行调试。据我了解,这是因为我混合了 SmartGWT 和 GWT 小部件。

在 GWTP 之前,我能够完成这项工作,因为要显示我的 UI,我会调用draw()我的根布局,这是一个 VLayout。现在我正在使用 GWTP,它会在我触发时为我显示我的布局RevealRootContentEvent,并且它会通过调用添加布局RootPanel.get().add(...),我认为这就是我现在遇到这些问题的原因。我所有的布局仍然在 SmartGWT 中。

有没有人遇到过同样的问题(在相同的设置中),如何处理?

4

1 回答 1

3

所以我想我找到了问题的根源。

我读了这个问题 http://code.google.com/p/gwt-platform/issues/detail?id=127

在其中一篇文章中,展示了如何创建自定义 RootPresenter。RootPresenter 还包含一个 RootView,其中放置了上述setInSlot方法,并且通过编写自定义视图,可以覆盖该方法,并确保draw()在 SmartGWT 布局上调用该方法,而不是添加到RootPanel.get().add(...);

我的 impl 看起来像这样:

public class CustomRootPresenter extends RootPresenter
{
    public static final class CustomRootView extends RootView
    {
        @Override
        public void setInSlot(Object slot, Widget content)
        {
            if (content instanceof Layout)
            {
                // clear
                RootLayoutPanel.get().clear();
                RootPanel.get().clear();

                Layout layout = (Layout) content;
                layout.draw();
            }
            else
            {
                super.setInSlot(slot, content);
            }
        }
    }

    @Inject
    public CustomRootPresenter(EventBus eventBus, CustomRootView myRootView)
    {
        super(eventBus, myRootView);
    }
}

请记住在您的 GIN 模块中注入自定义根演示者:

// don't use install, when using custom RootPresenter
// install(new DefaultModule(ClientPlaceManager.class));

bind(EventBus.class).to(SimpleEventBus.class).in(Singleton.class);
bind(TokenFormatter.class).to(ParameterTokenFormatter.class).in(Singleton.class);
bind(CustomRootPresenter.class).asEagerSingleton();
bind(PlaceManager.class).to(ClientPlaceManager.class).in(Singleton.class);
bind(GoogleAnalytics.class).to(GoogleAnalyticsImpl.class).in(Singleton.class);

它确实解决了我将 GWT 小部件添加到 SmartGWT 布局的问题。

感谢让-米歇尔·加西亚(Jean-Michel Garcia)将我推向正确的方向!:)

于 2012-08-13T06:50:14.907 回答