how can I prevent AG from putting the focus on the first field in the details table view?
There must be a very simple way - which I have not found yet

Thanks already
Olaf
[code]...[/code]
blocks for better readabilityCode: Select all
$j(function() {
document.querySelector("#deselect").focus();
});
Code: Select all
AppGini.focusFirstFormElement = function() { /*noop*/ };
Code: Select all
$j(function() {
$j("#deselect").focus();
});
[code]...[/code]
blocks for better readability[code]...[/code]
blocks for better readability