gpt4 book ai didi

javascript - 可以通过 Javascript 将选择下拉列表添加到我的 winJS 工具栏吗?

转载 作者:可可西里 更新时间:2023-11-01 12:35:51 26 4
gpt4 key购买 nike

我在我的 Windows 应用程序中创建了一个工具栏,其中包含一些按钮。

我想要的是这些按钮旁边的选择下拉列表,但不知道如何创建它或通过 Javascript 将它附加到工具栏(因为列表的元素会根据我使用的数据集而改变)。

我这样创建工具栏:

//JS

var viewsDataArray = [
new WinJS.UI.Command(null, { id: 'cmdDelete', label: 'delete', section: 'primary', type: 'button', icon: 'delete', tooltip: 'View 1', onclick: clickbuttonprintout() }),
new WinJS.UI.Command(null, { id: 'cmdFavorite', label: 'favorite', section: 'primary', type: 'toggle', icon: 'favorite', tooltip: 'View 2', onclick: clickbuttonprintout() }),
];


window.createImperativeToolBar2 = function () {
var tb = new WinJS.UI.ToolBar(document.querySelector("#toolbarContainer2"), {
data: new WinJS.Binding.List(viewsDataArray)
});
}

createImperativeToolBar2();

//html

<div id="toolbarContainer2" style="direction: rtl" ></div>

最佳答案

尝试使用 "content"命令类型。根据文档 @ https://msdn.microsoft.com/en-in/library/windows/apps/dn904220.aspx它应该支持<input>标签。

This creates an Command that can host other HTML markup inside of it, including text, <input> tags, and even a subset of WinJS controls. Only a <div> element can host a content Command.

更新

https://jsfiddle.net/vnathalye/yg0rs4xc/

您需要创建一个 <div>标记并将其作为第一个参数传递给 new WinJS.UI.Command .

完成后,您可以添加 select下拉或任何其他控件 div并且应该出现在工具栏中。在上面的 jsfiddle 链接中,我硬编码了 select div 中的标签.

关于javascript - 可以通过 Javascript 将选择下拉列表添加到我的 winJS 工具栏吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34808708/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com