use handsontable with an existing table

use handsontable with an existing table

Hello,


do you know if I can use hansontable jquery plugin with a table which is already exists ?

Because in the documentation, I saw that we can create a table with handsontable like that :

  1.     var data = [
  2.       ["", "Kia", "Nissan", "Toyota", "Honda"],
  3.       ["2008", 10, 11, 12, 13],
  4.       ["2009", 20, 11, 14, 13],
  5.       ["2010", 30, 15, 12, 13]
  6.     ];

  7.     var $container = $("#example1");
  8.     $container.handsontable({
  9.       data: data
  10.     });

But I wish to do something like that :

  1.     $("#monTableau").handsontable();

in order to give handsontable's feature to my table

Do you have an idea please ?