I installed Table Manager module 6.x-1.x-dev for my drupal 6.17... successful installation...
I enable checkboxes Table Manager in all my Input Filters
Then I creat a node with one simple table and give this table name "2":
<table id="2" border="0" cellpadding="0" cellspacing="0">
<tbody><tr>
<td>bla</td>
<td>bla</td></tr>
<tr><td>bla</td>
<td>bla</td></tr>
</tbody></table>
Yes, I see help of tablemanager input filter in my Full HTML (and other filters) below my editor.
Well, then I creat other node and enter
<p>test</p>
[tablemanager:2]
The result: Invalid Table ID
Then I change input filter for PHP in my node and enter:
<p>test</p>
<?php print tablemanager_display(2); ?>
The result: Invalid Table ID
In my db (MySql) I see two tables : tablemanager and tablemanager_data, but there are not data in its...
Where I'm stupid?
Comments
Comment #1
pfismvg commenteda node is not a table :), not even if you put an HTML table inside
to create a table goto "Create content" -> "Table"
that will create a table, and there is a huge chance that because it is your first table, the table_id will be 1
you cannot choose the table_id, it will be generated automaticly
Comment #2
palmaross commentedThank you, pfismvg!
Comment #3
pobster commented