bryntum / support

An issues-only repository for the Bryntum project management component suite which includes powerful Grid, Scheduler, Calendar, Kanban Task Board and Gantt chart components all built in pure JS / CSS / TypeScript
https://www.bryntum.com
53 stars 6 forks source link

Predecessor/successor lists miss tasks #9923

Open arcady-zherdev opened 4 weeks ago

arcady-zherdev commented 4 weeks ago

Forum post

Steps to reproduce:

  1. open advanced demo
  2. replace tasks with:
    gantt.taskStore.data = [
    {
        "startDate": "2019-01-14",
        "endDate": "2019-01-15",
        "name: : "task 1",
        "duration": 1
    },
    {
        "startDate": "2019-01-14",
        "endDate": "2019-01-15",
        "name: : "task 2",
        "duration": 1
    },
    {
        "startDate": "2019-01-14",
        "endDate": "2019-01-15",
        "duration": 1,
        "name: : "task 3",
        "expanded": true,
        "children": [
            {
                "startDate": "2019-01-14",
                "endDate": "2019-01-15",
                "name: : "task 3-1",
                "duration": 1
            }
        ]
    }
    ]
  3. start cell editing "task 1"

Result: "Predecessors" column editor dropdown list has no "task 3-1" entry