> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Editing

> Nextedy GANTT provides multiple ways to edit work item data directly within the Gantt chart, from inline field editing to the full lightbox editor.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

<Columns cols={3}>
  <Card title="Use the Lightbox Inline Editor" icon="file" href="/gantt/guides/editing/lightbox-editor">
    Open and configure the lightbox for editing work item fields directly from the Gantt chart.
  </Card>

  <Card title="Configure Additional Fields in Create Dialog" icon="file" href="/gantt/guides/editing/additional-dialog-fields">
    Add custom fields to the create dialog that appears when adding new work items.
  </Card>

  <Card title="Track and Calculate Progress" icon="file" href="/gantt/guides/editing/progress-tracking">
    Configure progress tracking, display the progress bar, and use drag handles for quick updates.
  </Card>

  <Card title="Use Inline Cell Editing" icon="table" href="/gantt/guides/editing/inline-cell-editing">
    Edit task fields directly in the grid columns without opening the lightbox.
  </Card>

  <Card title="Use Undo and Redo" icon="file" href="/gantt/guides/editing/undo-redo">
    Reverse or re-apply recent changes during an editing session.
  </Card>

  <Card title="Configure Drag Children Behavior" icon="file" href="/gantt/guides/editing/drag-children">
    Control whether child tasks move together with their parent during drag operations.
  </Card>

  <Card title="Handle Unsaved Changes and Session Timeout" icon="file" href="/gantt/guides/editing/unsaved-changes">
    Manage unsaved edits and prevent data loss from Polarion session timeouts.
  </Card>
</Columns>

<Tip title="Edit Mode vs. Read-Only">
  The Gantt chart supports three editing modes: **standard** (click Edit to enter edit mode), **always edit** (tasks are immediately draggable), and **read-only** (no editing allowed). Configure the mode through widget parameters or administration properties.
</Tip>

<LastReviewed date="2026-07-02" />
