在Application Craft中设置链接属性

时间:2014-06-13 16:58:09

标签: javascript dynamic applicationcraft

我正在为一个学校项目在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   
}

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

1 个答案:

答案 0 :(得分:0)

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

根据您的说法,我认为您要查找的媒体资源名称是img,然后您可以在其中设置要填充的图片的网址。

另外请查看AC论坛,有很多关于createWidget()的帖子也可以提供帮助 见https://getsatisfaction.com/application_craft/searches?query=createwidget&x=0&y=0&style=topics