Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/UIOMaticAddons.Export/Controllers/ExportController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using Umbraco.Core.IO;
using Umbraco.Web.Editors;
using System.Text;
using UIOMatic.Models;

namespace UIOMaticAddons.Export.Controllers
{
Expand All @@ -33,7 +34,13 @@ public object GetExport(string typeAlias)

//csv.WriteRecords(data);


//Write Header Row
UIOMaticTypeInfo typeInfo = os.GetTypeInfo(UIOMatic.Helper.GetUIOMaticTypeByAlias(typeAlias), true);
foreach (var item in typeInfo.EditableProperties)
{
csv.WriteField(item.Name);
}
csv.NextRecord();


foreach (var item in data)
Expand Down Expand Up @@ -66,4 +73,4 @@ public object GetExport(string typeAlias)
return new { data = "../App_Plugins/UIOMaticAddons/Exports/" + guid.ToString() + ".csv" };
}
}
}
}