I would change a datagrid title dynamic. How can i do this?
The following code is not working:
$('#cb1').combobox({
...
onSelect: function(row) {
consoleLog(row);
var dgPanel = $('#dg').datagrid('getPanel');
dgPanel.panel('options').title = row.text;
}
});