Dashboard - different titles depending on condition?

Hi,

is it possible to have different titles in json dashboards / panels depending on a condition?

Here is a small, stripped example:

{
"title": "My Dashboard",
"services": {...},
"rows": [
{
"title": "Main"
}
]
}

What I would like to have get the information of the title "My Dashboard" from a Javascript funtion to store there some logic (the title can have some differences depending on the system state).
Something like:

{
"title": determineDashboardTitle(),
"services": {...},
"rows": [
{
"title": "Main"
}
]
}

Is this possible?

I believe, in Kibana 3, your only options are templated dashboards, where you are limited to using inline handlebar syntax (example), and fully scripted dashboards, which return the whole dashboard object (example).