0

How to extract JSON data that I've already displayed in a grid using backgridjs, to submit via form post submit?

Hick
  • 35,524
  • 46
  • 151
  • 243

1 Answers1

0

collection.toJSON() will return all the data in a hash. You can turn it into form encoded key values pairs and submit that via Ajax. jQuery and Underscore has all the methods you need to achieve that.

Y.H Wong
  • 7,151
  • 3
  • 33
  • 35