1

我正在开发基于 Javascript 的 Windows 8 Metro App。它用于WinJS.UI.ListView显示 1 列的项目列表。除了文档中所说的之外,我不知道太多:http: //msdn.microsoft.com/en-us/library/windows/apps/br211837.aspx

如何根据数据源自定义列表项内容?是否有可用的回调函数,以便对于每个列表项,我可以根据数据数组中相应对象的变量显示/隐藏某些 HTML 标记?

就像这个 MSDN 文档的示例部分中的安排一样,我如何img根据是否picture存在显示/隐藏标签?

最重要的是,我如何拥有可变的列表项高度?根据上面提到的显示/隐藏功能,我的每个列表项都有不同的高度(实际上所有项目只有 2 个不同的高度)。如何实现这种行为?

谢谢你。

4

1 回答 1

4

中的列表布局WinJS.UI.ListView不支持不同高度的项目;它必须是一个特定的高度。如果您需要该布局,您将不得不自己创建它。根据您的数据源和项目数量,这要么是微不足道的,要么是困难的。:)

那说明:

  • 列表视图确实支持每个项目的不同模板。该itemTemplate属性允许您提供一个函数。详情在这里
  • 基于某些属性和计算,网格布局确实支持不同大小项目细节在这里,最后

如果您有小数据集(<50),那么您可以自己动态创建元素,并使用 childdiv的自然流一个接一个地堆叠您的元素。这个解决方案的种子可以在我的回答中找到

让我扩展示例控件,基于 VS 中的“空白”WWA 项目

将此代码添加到您的default.js

WinJS.Namespace.define("Samples", {
    ItemsControl: WinJS.Class.define(function (element, options) {
        this.domElement = element;
        WinJS.UI.setOptions(this, options);
    }, {
        domElement: null,
        _dataSource: null,
        dataSource: {
            get: function () {
                return this._dataSource;
            },
            set: function (v) {
                this._dataSource = v;
                this._renderItems(v);
            }
        },
        pickTemplate: function (item) {
            // The tempalte is found in the WinJS.Binding.Template instances that are
            // in default.html. They have ID attributes on them. We're going to pick
            // which one we want by setting the ID we're looking for, and then getting
            // that element from the DOM and returning the winControl
            var templateId = "template1"
            if (item.isType2) {
                // Because this is "isType2", we're going to use the other template
                templateId = "template2";
            }

            return document.getElementById(templateId).winControl;
        },
        _renderItems: function (source) {
            // This function renders all the items, thus when you set the datasource, and
            // expect it to render items, you probably would like all your items to replace
            // any existing items.
            WinJS.Utilities.empty(this.domElement);
            source.forEach(function (item) {
                var newElement = document.createElement("div");
                this.domElement.appendChild(newElement);

                this.pickTemplate(item).render(item, newElement);
            }.bind(this));
        }
    }),
});

function makeContent() {
    var data = [
        { label: "First", },
        { label: "Second", },
        { label: "Third", isType2: true },
        { label: "Fourth", isType2: true },
        { label: "Fifth", },
        { label: "Sixth", isType2: true }
    ];

    var control = document.getElementById("itemsControl").winControl;

    control.dataSource = data;
}

并将内容替换为body

<div data-win-control="WinJS.Binding.Template"
    id="template1">
    <div class="type1"
        data-win-bind="textContent: label"></div>
</div>

<div data-win-control="WinJS.Binding.Template"
    id="template2">
    <div class="type2"
        data-win-bind="textContent: label"></div>
</div>
<button onclick="makeContent()">Make Content</button>
<div id="itemsControl"
    data-win-control="Samples.ItemsControl">

</div>

最后,在 default.css 中:

    .type1 {
        background-color: green;
        height: 50px;
        width: 100px;
    }

    .type2 {
        background-color: red;
        height: 100px;
        width: 100px;
    }
于 2013-02-02T21:02:04.763 回答