Hi,
I'm having some issues using multiple Migx TVs. I am creating a discography page and want to easily enter in: Title, Album artwork, and a list of songs. I created a 2nd Migx TV for the list of songs and embedded it within my initial Migx TV. And it kinda works. I am able to put in all the info
The problem is in the preview of the information. The list of songs is just shown as a string.
My main TV is called Record:
FormTabs: [
{"caption":"Album","fields": [
{"field":"title",
"caption":"Title"
},{
"field":"artwork",
"caption":"Album Artwork",
"inputTV":"image"
},{
"field":"songs",
"caption":"Songs",
"inputTV":"songtitleTV"
}
]
}]
Grid Colums:
[
{"header": "Title", "width": "60", "sortable": "false", "dataIndex": "title"},
{"header": "Album Artwork", "width": "50", "sortable": "false", "dataIndex": "artwork","renderer": "this.renderImage"},
{"header": "Songs", "width": "100", "sortable": "false", "dataIndex": "songs"}
]
The "inputTV":"songtitleTV" refers to a second MigxTV that I setup so I could enter in multiple song titles.
Form Tabs: [
{"caption":"Song List","fields": [
{"field":"songfiles",
"caption":"Song Files",
"inputTV":"songfile"
},{
"field":"songtitles",
"caption":"Song Title"
},{
"field":"duration",
"caption":"Duration"
}
]
}]
Grid Colums:
[
{"header": "Song Files", "width": "160", "sortable": "true", "dataIndex": "songfiles"},
{"header": "Song Title", "width": "160", "sortable": "true", "dataIndex": "songtitles"},
{"header": "Duration", "width": "160", "sortable": "true", "dataIndex": "duration"}
]
I feel like I'm close, but I'm missing something. Any help would be greatly appreciated.
Thanks!