gpt4 book ai didi

javascript - 如何将占位符设置为表格过滤器?

转载 作者:太空宇宙 更新时间:2023-11-04 02:16:22 26 4
gpt4 key购买 nike

我正在尝试在 Webix 表格过滤器中添加一个占位符,如下所示:

columns:[
{
id:"title", header:["Film title", {
content:"richSelectFilter", // placeholder:"Select the movie..." doesn't work
}], width:300
},
{ id:"rating", header:"Rating", width:100 }
]

样本:http://webix.com/snippet/cac752a6

这适用于通常的 richSelect 小部件,但我找不到更改同一表过滤器配置的方法。是否可以?谢谢。

最佳答案

您可以使用类似 next 的代码来为 rich-select 过滤器设置占位符

columns:[
{
id:"title", header:["Film title", {
content:"richSelectFilter", inputConfig:{ placeholder: "text here" }
}], width:300
},

http://webix.com/snippet/58b054a2

或者,如果您想动态更改占位符

var select = $$("d1").getFilter("title");
select.define("placeholder", "Some text here");
select.refresh();

http://webix.com/snippet/bd31c1f6

关于javascript - 如何将占位符设置为表格过滤器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38856130/

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