Hello,
How to Hide Row Selectot in WinGanttView?
This question is related to Customization of Grid Area in WinGanttView.
I did hide Field choser Button but now I need to hide row selector Column underneath Field choser Button.
Please let me if you need more information to understand my question.
Thanks,
Imran
I got my answer from three posts.
I combined the code to fix my issue of hiding Row Selector of Gantt View control.
Following is my Code to Hide Row Selector
Dim cUltraGrid As UltraGrid = DirectCast(Me.ulGanttView.GetType().GetField("grid", Reflection.BindingFlags.CreateInstance Or Reflection.BindingFlags.Instance Or Reflection.BindingFlags.NonPublic).GetValue(Me.ulGanttView), UltraGrid) If Not (cUltraGrid Is Nothing) Then cUltraGrid.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False End If
Reference Posts:
http://ko.infragistics.com/community/forums/t/59490.aspx
http://ko.infragistics.com/community/forums/p/73940/374051.aspx#374051
http://ko.infragistics.com/community/forums/p/56237/288373.aspx#288373
Thanks To all for help.
Thanks
Eemran