Completed
Last Updated: 13 Apr 2016 13:18 by ADMIN
ADMIN
Ralitsa
Created on: 21 May 2015 11:36
Category: GanttView
Type: Bug Report
0
FIX. RadGanttView - the user can add links when the RadGanttView is in read only mode
To reproduce: 
1. Drag and drop RadGanttView on the form
2. Populate with tasks and set the ReadOnly property to true. 
3. Run the application and you will see that you can add links

Workaround: 
Disable adding of links:
void radGanttView2_LinkAdding(object sender, GanttViewLinkAddingEventArgs e)
{
    e.Cancel = true;
}
0 comments