HTML page title

Archived from the Xataface Users forum.

tomhousley — Mon Nov 09, 2009 2:25 pm

Hello,

When in list view of a specifc table, the HTML page title looks like this:

Code: Select all
<title>tbl_tablename - Name of Xataface Site</title>

How do I change the way in which the table name is shown to something a little more understandable?

Many thanks, Tom


shannah — Mon Nov 16, 2009 4:33 pm

You can use the html_title block in your delegate class.

e.g.

Code: Select all
function block__html_title(){     echo "my Title"; }

tomhousley — Tue Nov 17, 2009 3:45 am

That’s great - thank you Steve