Unplanned
Last Updated: 13 Aug 2018 04:25 by Kasim
ADMIN
Attila Antal
Created on: 10 Aug 2018 06:58
Category: Gantt
Type: Feature Request
1
Integrate validation for column UniqueNames in RadGantt
Integrate validation of unique names that are being assigned through the UniqueName property of the GanttBoundColumn class to prevent the same assigned two times.

E.g.

RadGantt myGantt = new RadGantt();
GanttBoundColumn boundColumn = new GanttBoundColumn();
boundColumn.UniqueName = "Unique";
myGantt.Columns.Add(boundColumn);

GanttBoundColumn boundColumn2 = new GanttBoundColumn();
boundColumn.UniqueName = "Unique"; // this should be validated
myGantt.Columns.Add(boundColumn2);

1 comment
Kasim
Posted on: 13 Aug 2018 04:25
Also, need to make sure that it's never blank.