leikind / wice_grid

A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters
MIT License
537 stars 215 forks source link

Export CSV Replaces database table names with Grid Table Header names #205

Closed CromonMS closed 9 years ago

CromonMS commented 9 years ago

Been getting my head around Wicegrid, really nice for what I need, however; after I export a csv of the grid, when I try to then re-import it the headers aren't compatible with the database anymore.

Anyone got any ideas? TIA.

leikind commented 9 years ago

Export CSV Replaces database table names with Grid Table Header names

CSV export gives you a CSV version of your HTML view, it is not supposed to make a DB dump for you. Use your database dump tools, or process your csv the way you need.

CromonMS commented 9 years ago

Ahh thanks for getting back, I'm pretty novice to Rails, so will do some more learning :)