Been using MIGX successfully on 2.2.0pl2 but now I've run into an issue on a new site in development.
First, the specs:
Error Report: Empty
MODx Version: 2.2.0-pl2 (Traditional)
Database Type: mysql
Database Version: 5.1.56-log
PHP: 5.3.8
Everything work thus far. Created the following template variables for use with MIGX:
slideshow (migx) - assigned to Home Page template
slideshowlink (Resource List) - assigned to no template
slideshowimage (Image) - assigned to no template
slideshowtitle (Text) - assigned to no template
slideshowdescription (Text) - assigned to no template
When I go to the Template Variables tab of a page that use the Home Page template I can see the empty MIGX grid (since I haven't populated it yet) and I an click Add Item.
The problem happens when I click Add Item. The MIGX box pops up and is stuck in a perpetual Loading cycle and never shows the fields we need to edit.
For my slideshow template variable i have this for Form Tabs:
[
{"caption":"Slideshow", "fields": [
{"field":"slideshowimage","caption":"Image","inputTV":"slideshowimage"},
{"field":"slideshowtitle","caption":"Heading","inputTV":"slideshowtitle"},
{"field":"slideshowdescription","caption":"Description","inputTV":"slideshowdescription"},
{"field":"slideshowlink","caption":"Link","inputTV":"slideshowlink"}
]}
]
And this for Grid Columns:
[
{"header": "Image", "width": "500", "sortable": "false", "dataIndex": "slideshowimage", "renderer": "this.renderImage"},
{"header": "Heading", "width": "500", "sortable": "false", "dataIndex": "slideshowtitle"},
{"header": "Description", "width": "500", "sortable": "false", "dataIndex": "slideshowdescription"},
{"header": "Link", "width": "100", "sortable": "true", "dataIndex": "slideshowlink"}
]
I am just wondering if I'm suffering from missing something obvious.
One thing I did notice is that I can't see the "File System" listed for Media Sources in the manager unless I double click that area.
Another thing to note is I have 3 contexts in addition to the web context and I'm attempting this in a context other than the web context.
Any input would be great.