()
| 279 | } |
| 280 | } |
| 281 | async function onMove() { |
| 282 | if (_parentTableSelection) { |
| 283 | const id = _parentTableSelection.job_jobid; |
| 284 | const ok = await movePosition( |
| 285 | _getModuleName(), |
| 286 | id, |
| 287 | 1, |
| 288 | 1, |
| 289 | _parentTableSelection, |
| 290 | _getListofSelectedRow(), |
| 291 | _staticData |
| 292 | ); |
| 293 | if (ok) { |
| 294 | await _updateTableContent(); |
| 295 | } |
| 296 | } |
| 297 | } |
| 298 | async function onDefineLayout() { |
| 299 | const pk = getPKFromSelection(); |
| 300 | if (pk !== null) { |
nothing calls this directly
no test coverage detected