Starting with the basics of table formatting - just trying to turn off table header in inject function on an existing table:
msg.ui_control = {};
msg.ui_control.tabulator = {
"headerVisible": false
}
return msg.ui_control;
It doesn't turn off headers when I inject it into the existing table. I did read a post on issues with light vs dark theme - not sure if that was solved yet, but I tried dark theme and still the same issue. Debug on output of function node looks Ok.
Any ideas why its not working?
Secondly, I want to add a numeric input cell with a default value inot the table and then send the whole row data into an array after entry. I found some long threads/complicated looking solutions that feature this as part of it, and looked at tabulator docs, but just wonderd if there is a simple example somewhere I missed?