Вы можете использовать Ext.String.format
. Советую использовать значения по умолчанию.
formulas: {
url: function(get) {
return Ext.String.format('{0}://{1}:{2}/{3}',
get('protocol') || 'https',
get('host') || 'localhost',
get('port') || 80,
get('context') || '')
}
}