Page 1 of 1

HTML page title

PostPosted: Mon Nov 09, 2009 2:25 pm
by tomhousley
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

PostPosted: Mon Nov 16, 2009 4:33 pm
by shannah
You can use the html_title block in your delegate class.

e.g.

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

PostPosted: Tue Nov 17, 2009 3:45 am
by tomhousley
That's great - thank you Steve