By using this website, you agree to our Terms of Use (click here)
Is there a keyboard shortcut key to expand/collapse the top summary section on forms. I know you can click the arrow, but a shortcut key would be faster.
If not a native key, is there a way to customize it? Google has been no help.
I am fairly confident there is no shortcut for that. You can try suggesting it:
https://feedback.acumatica.com/ideas
They do have shortcup for that, here is a shortcup of the code they are using in JS. you can customize JS in the page, the setup new shortcup event.
switch (k)
{
case 27: // escape
__px(this).cancelEvent(e, false);
break;
case 13: // enter
case 9: // Tab
var ddOpen = this.dropDownOpen || this.autoCompleteOpen;
if (ddOpen && this._autoCompleteT == null && k == 13)
{
this.hideDropDown(true);
this._repaintText(this.isEditMode());
}
else
{
if (ddOpen) this.hideDropDown(false);
if (!this.inlineEditor)
{
this.execBlurCommand(false);
this._blurCommandLaunched = true;
setTimeout(function() { delete me._blurCommandLaunched; }, 1);
}
}
break;
Sorry but i don't see how pasting JS code answers the original question. If they do have a keyboard shortcut then what is it?
you need to customize keyboard shortcut for this with JS
Wow, this definitely opens up a lot of possibilities. Very cool!