Hi there!
I'm using Views Bonus Pack to output flexifield content as a structured CSV file using Views Bonus Pack's CSV File style.
The flexifield has three fields: "Room", "Width", "Length" and "Level", each field infinitely repeatable via the "add another" button. However, when returned in Views via the TXT and CSV Views Bonus Pack functionality, instead of being a keyed array like I'd hope, Views Bonus Pack's TXT File style is outputting Flexifield content as such:
[Measurements] Room: Bedroom Length: 5.00 Width: 5.00 Area: 25.00 Room: Bathroom Length: 3.00 Width: 3.00 Area: 9.00<code>
Or, via print_r($themed_rows):
<code>[field_room_item_id] => " Room: Bedroom Length: 5.00 Width: 5.00 Area: 25.00 Room: Bathroom Length: 3.00 Width: 3.00 Area: 9.00 "I.e., as one big string, with a single space separating each label from its value.
My template file (views-bonus-export-csv.tpl.php) is similar in structure to views-view-table.tpl.php, if that helps at all.
I ask because I have a big template spreadsheet I need to programmatically insert Flexifield data into and it might be a lot easier if I don't need to implode that data for every row.
Thanks!