well I was able to use PHP and your static methods to manipulate programtically the table
$existing_table = TablePress::$model_table->load( 1, true, true );
$existing_table[‘data’][]=array(0 => ‘value’,
1 => ‘value’,
2 => ‘value’,
3 => “value”,
4 => “value”,
5 => “value”);
$existing_table[‘visibility’][‘rows’][]=1;
$saved = TablePress::$model_table->save( $existing_table );
And it works too
Is there any way to just load a row?
this loads all the data from ALL the table…
but that’s stored into the db, so it should be at least possible to just find the row and update it right?