mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 02baffe8-0600-430d-81fa-a9993685e7cb
8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
function startSendingRows(rows) {
|
|
window.setInterval(() => {
|
|
Microsoft.Dynamics.NAV.InvokeExtensibilityMethod(
|
|
"StoreRows",
|
|
[JSON.stringify(rows)],
|
|
false);
|
|
}, 100);
|
|
}
|