0

I am using handsontable jquery plugin. It has a feature for adding new columns. Now my problem is when the new column is added how am i going to save it into the database?. Because table has fixed columns. Any suggestions ??

BigJ
  • 31
  • 4
  • 1
    It really depends on you application. What do you need new columns for? In many cases, I have serialized all grid data into one JSON string and put that string into a TEXT/BLOB column in the database. – warpech Nov 20 '12 at 11:57

1 Answers1

1

When you create a new column in handsontable, create the new column in the database too. You can do this with the event:

afterCreateCol (index: Number)

"Callback is fired when a new column is created"

PostureOfLearning
  • 3,481
  • 3
  • 27
  • 44