My workaround is to call nuSaveAction() followed by nuGetBreadcrumb() but nuGetBreadcrumb executes before the save has returned, so I have the following workaround:
Code: Select all
nuSaveAction();
setTimeout(() => { nuGetBreadcrumb(2); }, 500);
Code: Select all
nuSaveAction();
setTimeout(() => { nuGetBreadcrumb(2); }, 500);
Code: Select all
$('#ftx_pos_regno').val($('#ftx_card_vrn_driver').val()).change();
$('#ftx_exception').val('0').change();
nuSaveAction();
setTimeout(() => { nuOpenPreviousBreadcrumb(); }, 500);