Status messages

We can show a message in the statusbar. The message could be something like "Showing 10-20 out of 123 products" or "23 products selected".

  • ts.ui.get('#table1', table => {
    	table.status('This is the message.');
    	table.rows([
    		[1, 4, 7],
    		[2, 5, 8],
    		[3, 6, 9]
    	]);
    });

TODO: Note about markdown in the status message!