gpt4 book ai didi

javascript - 更新 LightSwitch 中的自定义控件

转载 作者:行者123 更新时间:2023-12-03 12:38:54 24 4
gpt4 key购买 nike

我正在根据数据库表中的 bool 字段显示自定义文本。

myapp.BrowseAdverts.AdType_postRender = function (element, contentItem) {
if (contentItem.data.AdType === true) $(element).append("Advert type = BANNER");
else $(element).append("Advert type = WOW");
};

在我编辑列表中选定的元素(甚至添加新项目)后,除此自定义控件之外的所有字段都将更新。

如何设置“绑定(bind)”,以便自定义文本在字段修改时更新?

最佳答案

我自己找到了解决方案:

contentItem.dataBind("value", function (value) {
if (value === true) {
$(element).text("BANNER");
} else {
$(element).text("WOW");
}
});

关于javascript - 更新 LightSwitch 中的自定义控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23598971/

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