如何使WinJS.UI.ListLayout中项目的一列的内容可编辑junit testResults: '**/target/*-reports/TEST-*.xml', allowEmptyResults: true
step ([$class: 'TestResultToALMUploader',
almServerName: 'HP ALM Server', //almServerName
credentialsId: 'ALM-CREDENTIALS',
almDomain: 'ALMDomain', // almDomain
almProject: 'AlmProject', //almProject,
testingFramework: 'JUnit', //testingFramework
testingTool: '', //testingTool
almTestFolder: 'TestHPALM', //almTestFolder
almTestSetFolder: 'TestHPALM', //almTestSetFolder
almTimeout: '-1', //almTimeout
testingResultFile: "**/junitResult.xml", //testingResultFile
jenkinsServerUrl: '' //jenkinsServerUrl
])
,但其余列表列仍对contenteditable="true"
之类的ListLayout其他操作保持活动状态?
例如列:
itemsReorderable="true"
列表视图配置:
<div class="person" data-win-bind="innerText: person" contenteditable="true"></div>
答案 0 :(得分:0)
我终于找到答案:
类win-interactive
必须在该元素内部或其任何父元素中使用。
<div class="person win-interactive" data-win-bind="innerText: person" contenteditable="true"></div>
这将禁用项目的ListView行为,并可以向项目模板添加交互式元素。
基于此http://msdn.microsoft.com/en-us/library/windows/apps/Hh700705.aspx