Completed
Last Updated: 14 Oct 2019 14:32 by ADMIN
Release R3 2019 SP1
Mary
Created on: 24 Sep 2019 12:24
Category: GanttView
Type: Bug Report
0
RadGanttView: tasks are not displayed if the ganttview is located in a page that is not selected in RadPageView

Run the attached sample project and select the second page. You will notice that the tasks are missing. This used to work in R2 2019 (version 2019.2.508).

Workaround: Initialize the RadGanttView.BindingContext before adding it to the page:

        Dim Gantt As New RadGanttView
        Gantt.Dock = DockStyle.Fill
        Gantt.BindingContext = New BindingContext()
        RadPageViewPage2.Controls.Add(Gantt)

Attached Files:
0 comments