> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: moveTaskAfter(taskId: string, options: MoveTaskAfterOptions) # Method package: wixCrmV2 # Method menu location: wixCrmV2 --> tasks --> moveTaskAfter # Method Link: https://dev.wix.com/docs/velo/apis/wix-crm-v2/tasks/move-task-after.md # Method Description: Moves a task specified by ID to be placed after another task in the task display. You can reposition a task to be first in the display by omitting `beforeTaskId`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Update the display order of tasks (dashboard page code) ```javascript import { tasks } from 'wix-crm.v2'; /* Sample taskId value: * '37c2c378-8085-4ef7-8a3e-6f341248e757' * * Sample options value: * { * beforeTaskId: '3a49f901-62d5-4ca2-a8e8-395c562a3f7b' * } */ export async function myMoveTaskAfterFunction(taskId, options) { try { await tasks.moveTaskAfter(taskId, options); console.log('Successfuly updated task display.'); } catch (error) { console.log(error); // Handle the error } } ``` ## Update the display order of tasks (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { tasks } from 'wix-crm.v2'; import { elevate } from 'wix-auth'; /* Sample taskId value: * '37c2c378-8085-4ef7-8a3e-6f341248e757' * * Sample options value: * { * beforeTaskId: '3a49f901-62d5-4ca2-a8e8-395c562a3f7b' * } */ export const myMoveTaskAfterFunction = webMethod(Permissions.Anyone, async (taskId, options) => { try { const elevatedMoveTaskAfter = elevate(tasks.moveTaskAfter); await elevatedMoveTaskAfter(taskId, options); console.log('Successfuly updated task display.'); } catch (error) { console.log(error); // Handle the error } }); ``` ## Move a task to the top of the display. ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { tasks } from 'wix-crm.v2'; import { elevate } from 'wix-auth'; /* Sample taskId value: * '37c2c378-8085-4ef7-8a3e-6f341248e757' */ export const myMoveTaskAfterFunction = webMethod(Permissions.Anyone, async (taskId) => { try { const elevatedMoveTaskAfter = elevate(tasks.moveTaskAfter); await elevatedMoveTaskAfter(taskId); console.log('Moved task to top of display'); } catch (error) { console.log(error); // Handle the error } }); ``` ---