作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 sap.m.Table,我正在尝试获取行信息。
这是我的 view.xml 表声明:
<Table xmlns="sap.m" id="potiemsTable" inset="false" mode="MultiSelect" itemPress="rowSelectionChanged" >
在 Controller 中我尝试了一切...但仍然没有运气...
rowSelectionChanged: function(oControlEvent)
{
var selectedRowContext = oControlEvent.getParameter("items");
var link = oControlEvent.getSource().getBindingContext();
var fr = oControlEvent.getBindingContext();
var ctx = oControlEvent.getBindingContext();
sap.m.alert(selectedRowContext);
},
表使用bindAggregation 通过提供的 OData 服务检索行。
oTable.bindItems("/purchaseOrderSet(1)/purchaseItems",template);
有人可以告诉我如何检索被单击行的上下文信息吗?
干杯!
乔治斯
最佳答案
请参阅API documentation of itemPress
event :
Fires when an item is pressed unless the item's
type
property isInactive
.
请确保您的 ColumnListItems 确实具有 type 属性,而不是 Inactive
,因为 Inactive
是默认值。
关于sapui5 - UI5 sap.m.Table itemPress 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24342554/
我正在使用 sapui5 创建一个表。我想知道我是否可以将升序排序和降序排序的默认图标更改为我自己的图标? 补充问题:有没有一种方法可以在标题中显示我的自定义图标而无需先点击它? 最佳答案 只需在 W
我如何在 SapUI5 中构建一个 XML View 来迭代 JSONModel 中的所有元素? 到目前为止,我有一个 Controller : sap.ui.define([ "sap/ui
我是一名优秀的程序员,十分优秀!