本文介绍了如何获取sap.m.table中一行的内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以基本上我的问题是我有一个页面:

So basically My problem is I have a page:

var page1 = new sap.m.Page({
title: "Something",
enableScrolling : true,
content : [
    oTable = new sap.m.Table("items", {
        columns : [
            new sap.m.Column({
                styleClass : "name",
                hAlign : "Left",
                header : new sap.m.Label({
                    text : "firstColumn"
                })
            })
        ]
    })]
});
var template = new sap.m.ColumnListItem({
    type : "Navigation",
    cells : [
        new sap.m.Label({
            text : "{name}"
        })
    ]
});
template.attachPress(function(oEvent){
    var selectedRowContext = oEvent.getParameter("item");
    alert(selectedRowContext);
});

这里我想获取 selectedRowContext 但不知道如何获取?

Here I want to get the selectedRowContext and I don't know how?

谢谢

推荐答案

如果你是绑定数据试试

this.getBindingContext(/*modelName?*/)

oEvent.getSource().getBindingContext(/*modelName?*/)

这篇关于如何获取sap.m.table中一行的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 04:14