Hi to all,
I am new to dhtmlSpreadsheet and I am liking it. I also need documentation of how the data is stored into the five tables which were created in my database. I am learning by experimentation, but it’s so slow. I have read all the documentation on this site and supplied with the download. Is there more documentation (or demos) available? For example, I need to work with user_id, which I see in the tables, but I don’t know what functionality is provided.
Any help is great!
CC
Thanks for feedback, we will add such info.
Most probably you need not the tables itself but the way to access|change data directly in DB. While there is no clear documentation ( yep, it is a shame ) you can check codebase/api.php. It provides two classes for SpreadSheet and for Cell - you can use them to read|write data in spreadsheet.
$table = new SpreadSheet($conn, 1, "db_", "MySQL");
$data = $table->getCell(array(0,0))->getValue();
Hi Stanislav,
Thanks for the help. I’m happy to hear that more info will be added. Please announce it here and/or send me a message when it is added.
Have a great day,
CC