我最近从Wicket 1.5.11升级到Wicket 6.13 升级后,我遇到链接的onclick行为问题。
我们有一个可点击的行,其中包含很少的列(其中一列是新页面的链接)。 现在,如果我们点击链接,那么我们将转到新页面,然后点击行(除了链接)行被选中(使用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方法链接。
答案 0 :(得分:2)
我找到了解决方法。 在代码中添加了以下行:
myLink.add(new AttributeAppender(
"onclick", new Model("if(event.stopPropagation) { "+
"event.stopPropagation();"+
"} else { "+"event.cancelBubble = true;"
+"}"), ";"));
链接onclick事件正在传播到该行的onclick事件,因此它的行为就是这样。
答案 1 :(得分: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();"), ";");
}
}
答案 2 :(得分:0)
我有同样的症状:从Wicket 1.4直接迁移到Wicket 7.9后,Ajax行为无效。
就我而言,原因是:jquery javascript来源coudn未加载。他们被禁止服务。
我的应用程序使用了AuthStrategy类,它有一个方法:
@Override
public boolean isResourceAuthorized(IResource arg0, PageParameters arg1) {
return false;
}
因此,jquery js源无法加载。将回报更改为 True 解决了问题。
似乎通过该方法传递的唯一资源是那些jquery javascripts。