1

我最近从 Wicket 1.5.11 升级到 Wicket 6.13 升级后,我遇到了链接的点击行为问题。

我们有一个可点击的行,其中包含几列(其中一列是指向新页面的链接)。现在,如果我们点击链接,那么我们将被带到新页面,然后我们点击行(除了链接)被选中的行(使用 Ajax 调用)。

这在 Wicket 1.5.11 上运行良好,我遇到了 Wicket 6.13 的问题

链接类:

public class MyLink extends Link {

private static final long serialVersionUID = 5808539933400105591L;
private MyRow myRow;

public MyLink(String id, MyRow myRow) {
    super(id);
    this.myRow = myRow;
}

/** {@inheritDoc} */
@Override
public void onClick() {
    //sets the response page where this needs to be redirected.
    this.setResponsePage(new ResponseReadPage(this.myRow));
}
}

填充方法:

@Override
protected void populateItem(final ListItem item) {
    final MyRow myRow = (MyRow) item.getModelObject();
    item.add(new Label("naam", myRow.getName()));
    item.add(new Label("id", myRow.getCode()));

    MyLink myLink = new MyLink("myLink", myRow);
    item.add(myLink);
    final MyRow selectedRow = this.session.getSelectedRow();

    if (selectedRow != null
            && selectedRow.equals(myRow)) {
        this.session.selectedRow(myRow);
        item.add(new AttributeModifier("class", "activeRow"));
        this.selecteditem = item;

        //some business logic
    }

    item.add(new AjaxEventBehavior("onclick") {
        /** {@inheritDoc} */
        @SuppressWarnings({ "unchecked", "rawtypes" })
        @Override
        protected void onEvent(final AjaxRequestTarget target) {
            final WebMarkupContainer container = (WebMarkupContainer) MyListView.this.getParent()
                    .getParent().get("myContainer");

            MyListView.this.session.setSelectedRow(myRow);

            if (MyListView.this.currentActiveItem != null) {
                MyListView.this.previousActiveItem = MyListView.this.currentActiveItem;
                MyListView.this.previousActiveItem.add(new AttributeModifier("class", ""));
            }
            item.add(new AttributeModifier("class", "activeRow"));
            MyListView.this.currentActiveItem = item;
            if (MyListView.this.previousActiveItem != null) {
                target.add(MyListView.this.previousActiveItem);
            }

            if (MyListView.this.selecteditem != null
                    && !MyView.this.selecteditem.equals(item)) {
                MyListView.this.selecteditem.add(new AttributeModifier("class", ""));
                target.add(MyListView.this.selecteditem);
            }
            target.add(item);
            target.add(container);
        }
    });
}

当我尝试单击 LINK 而不是链接的 onClick 方法时,将调用行的 AjaxBehavior 的 onclick 事件。谁能指出我正确的方向来解决这个问题?

更新:当我右键单击链接并在另一个选项卡中打开它时,对链接的 onClick 方法的调用按预期成功发生。

4

3 回答 3

2

我找到了解决方案。在代码中添加了以下几行:

myLink.add(new AttributeAppender(
"onclick", new Model("if(event.stopPropagation) { "+
                "event.stopPropagation();"+
                    "} else { "+"event.cancelBubble = true;"
                     +"}"), ";"));

链接 onclick 事件被传播到该行的 onclick 事件,因此它以这种方式运行。

于 2015-01-13T09:36:57.053 回答
0

我刚刚遇到了同样的问题。由于我的应用程序不支持低于 9 的 IE 版本(请参阅https://developer.mozilla.org/en-US/docs/Web/API/Event/stopPropagation),我保持 AttributeAppender 简单:

public class EventStopPropagationAttributeAppender extends AttributeAppender {

  public EventStopPropagationAttributeAppender() {
    super("onclick", new Model<String>("event.stopPropagation();"), ";");
  }
}
于 2016-01-07T14:44:49.057 回答
0

我有同样的症状:从 Wicket 1.4 直接迁移到 Wicket 7.9 后,Ajax 行为不起作用。

就我而言,原因是:无法加载 jquery javascript 源。他们被禁止上菜。

我的应用程序使用了 AuthStrategy 类,它有一个方法:

@Override
public boolean isResourceAuthorized(IResource arg0, PageParameters arg1) {
    return false;
}

因此,无法加载 jquery js 源。将返回值更改为True解决了这个问题。

似乎通过该方法传递的唯一资源是那些 jquery javascripts。

于 2017-11-01T12:52:31.433 回答