0

我正在为一个学校项目在 Applicationcraft 中制作一个 Web 应用程序。我必须动态创建一堆图像(取决于我们数据库中的图像数量)。这些图像需要附加一个链接,Applicationcraft 中的 Image 小部件对此有一个属性,但我不知道使用它的语法是什么。

我目前有这个:

for (var i = 0; i < data.length; i++) 
{
    app.createWidget('PanelContainerSponsorLabel', 'WiziCore_UI_LabelWidget', undefined, {name:"HoofdsponsorLabel"+i, pWidth:100, height:50});
    app.createWidget('PanelContainerSponsorLabel', 'WiziCore_UI_LabelWidget', undefined, {name:"fillerLabel"+i, label:"", pWidth:100, height:50});
    app.createWidget('PanelContainerSponsorImage', 'WiziCore_UI_ImgWidget', undefined, {name:"HoofdsponsorImage"+i, pWidth:100, height:50});
    app.createWidget('PanelContainerSponsorImage', 'WiziCore_UI_LabelWidget', undefined, {name:"fillerLabel"+i, label:"", pWidth:100, height:50});
    app.setValue("HoofdsponsorLabel"+i, data[i].BI_SponsorNaam);
    app.setValue("HoofdsponsorImage"+i, data[i].BI_SponsorImage, {link:{type:"url",title:"http:\/\/www.google.nl\/",body:"new_window"}});  //Link to URL here   
}

该文档没有详细说明如何格式化此属性,并且我没有收到错误消息,所以我有点卡住了

4

1 回答 1

0

查找属性名称的最佳方法是将鼠标悬停在 AC 属性栏中的相关属性上,或者使用开发工具使用 ac 的 app.debugProperties() 函数进行检查。

从您所说的来看,我认为您要查找的属性名称是img您设置要填充的图像的 URL 的位置。

还请查看 AC 论坛,有许多关于 createWidget() 的帖子也可能有所帮助,请参阅https://getsatisfaction.com/application_craft/searches?query=createwidget&x=0&y=0&style=topics

于 2014-06-14T08:40:21.210 回答