MODX:使用Migx和ImagePlus显示图像

时间:2014-12-22 08:40:59

标签: image modx-revolution

我在Modx做一个项目。我使用Migx创建了一个图像滑块。客户想要一个图像裁剪工具,所以我安装了Image +。在migx变量的Form Tabs:部分中,我提供了

[
{"caption":"Image", "fields":[
    {"field":"image","caption":"Image","inputTVtype":"imageplus"}
]}
] 

Grid Columns:我已经给出了

[
{"header": "Image", "width": "50", "sortable": "false", "dataIndex": "image","renderer": "this.renderImagelus"}
]

在网格列中,所选图像未显示(其余图像正在工作)。我猜"renderer": "this.renderImagelus"是错误的,但我不知道它应该是什么价值。 有人可以找到解决方案。

1 个答案:

答案 0 :(得分:1)

MODX存储库中的当前Image +版本可与MIGX配合使用。

Form Tabs部分"inputTVtype":"imageplus"部分及Grid Columns部分"renderer": "ImagePlus.MIGX_Renderer

中使用此部分

如果您想为图片+电视使用自己的媒体资源,则必须在Form Tabs行后的inputTVtype部分添加类似内容

"sourceFrom": "migx",
"sources": [{
    "context": "web",
    "sourceid": "2"
}]