Integrated table viewer questions

The integrated table viewer is great, many thanks to those involved. A couple of queries.

I invoke it with vscodedisplay(mytable, "mytitle") and the tab reads Julia Table: mytitle. Is there any way I can remove/replace the Julia Table: text? My reasoning is just to save some real estate when using long titles.

Is there any way to add text in the body of the tab itself? Such as a description of the table when presenting results.

How does one perform formatting of the columns? I have numeric data, columns have different decimal place requirements. If I use round(myval, digits=2) then the trailing zeros are omitted, i.e. 2 is displayed rather than 2.00. I do not want to create formatted strings as I then lose the sorting feature of the table.