1

更新:

请检查并建议如何在 koGrid 中将列值作为链接,以及如何同时在 kogrid 中具有双击功能,即年龄列作为链接​​,单击时将我带到主页/关于页面,当我加倍时单击将我带到主页/索引页面的任何行。

[这里]:http: //jsfiddle.net/LRY2U/

 {
field: "age", 
displayName: "Age",
cellTemplate: "content"
 }

谢谢普里扬卡

4

1 回答 1

1

问题是行选择处理鼠标点击,所以我们要确保我们不允许点击事件传播到行选择处理程序,我们可以使用方法来做到这一点event.stopPropagation

为了让它工作,我首先更改了ItemViewModel构造函数来执行实际的导航。

function ItemViewModel(name, age) {
    var self = this;

    self.name = name;
    self.age = age;
    self.ageUrl = "/Home/Index/" + self.age;
    function navigateTo(url){
        // Before navigation we want to stop propagation of the event to avoid 
        // other handlers to handle the click and replace the url (this will 
        // ensure the row selection isn't triggered by clicking the age link)
        event.stopPropagation();
        window.location.href = url;
    }
    self.navigateToName = function(){
        navigateTo("/Home/Index?Name=" + self.name);
    };
    self.navigateToAge = function(){
        navigateTo(self.ageUrl);
    };
};

然后我更新了您的单元格模板以使用ItemViewModel对象的属性和方法。

cellTemplate: "<a data-bind='click: $parent.entity.navigateToAge, attr: {href: $parent.entity.ageUrl}, text: $parent.entity.age'></a>"

最后还更新了行选择处理程序以使用ItemViewModel对象上的方法。

afterSelectionChange: function (rowItem, event) {
    if (event.type == 'click') {
        rowItem.entity.navigateToName();
    }
}

完成这些更改后,一切对我来说都很好(如果我把它放在一个自定义的 html 页面中,因为 jsfiddle 不是很热衷于导航)。

于 2014-02-24T09:36:12.317 回答