Hi Gary,
In this case you will have to subclass the NTreeListTableData class by the following way:
Public Class MyNTreeListTableData
Inherits NTreeListTableData
Protected Overrides Function CreateSubItem(ByVal value As Object) As Nevron.UI.WinForm.Controls.NTreeListNodeSubItem
Dim item As NTreeListNodeSubItem = MyBase.CreateSubItem(value)
If value.GetType() Is GetType(DateTime) Then
item = New NTreeListNodeStringSubItem()
TryCast(item, NTreeListNodeStringSubItem).Text = CDate(value).ToShortDateString()
End If
Return item
End Function
End Class
This way you will be able to manage the visual representation of the DateTime item.
Regards,
Angel.