I have a site that I'm using Revo 2.4.2 and I've set up the most current extra MIGX for a list of images and details. Everything works great if I'm the admin and I'm using the filesystem as a media source. However, when I change the media source on my imageTV I've assigned to migx to match my client's uploads folder the file path works for the migx back end display but the web view the places the file path of the media source outside the image tag. Example (assets/uploads/<img src="images/C.Reddick.png" alt="Celia Reddick") I can't figure out what I'm doing wrong and cannot find any other posts about this. Here are my fields and grid json
{"caption":"Student Information", "fields": [
{"field":"name","caption":"Student Name:","inputTV":"Name"},
{"field":"type","caption":"Student Type:","inputTV":"student type"},
{"field":"email","caption":"Email Address:","inputTV":"email"},
{"field":"image","caption":"upload Student Image:","inputTV":"imageTV"},
{"field":"richtext","caption":"Content:","inputTV":"Content"}
]}
]
[
{"header": "Student Name", "width": "90", "sortable": "true", "dataIndex": "name"},
{"header": "Student Degree", "width": "50", "sortable": "true", "dataIndex": "type"},
{"header": "email Address", "width": "50", "sortable": "true", "dataIndex": "email"},
{"header": "Image", "width": "50", "sortable": "false", "dataIndex": "image","renderer": "this.renderImage"}
]
and here's my front-end code and chunk
[[getImageList?
&tvname=`Mowana_migx`
&tpl=`MowanaTpl`
]]
Chunk: MowanaTpl
</br></br>
[[+image]]<strong>[[+name]]</strong></br>
[[+type]]</br>
[[+email]]</br>
[[+richtext]]</br></br>
<hr>
I've set the media source on the imageTV and not the migx TV. This is not a complicated layout but it seems crazy I can't figure this out. I do have some form customization for my client's credentials but I doubt that might be causing the issue. Any help would be appreciate. Thanks Chris