Hello,
I am experimenting with your controls before we buy them and have a question. I have a class (for sake of demo I have simplified it) that I am binding to a RadListView via a binding list. Can I prevent the Badge column from appearing in the list view? The listview is actually used to display many different types of data so I would prefer a method that did not involve me manually hiding the column.
Public Class Visitor
Friend Sub New(name As String, arrival As Date, department As String, badge As Integer)
_Name = name
_ArrivalTime = arrival
_Department = department
_Badge = badge
End Sub
Private _Name As String
Public ReadOnly Property Name As String
Get
Return _Name
End Get
End Property
Private _ArrivalTime As Date
Public ReadOnly Property ArrivalTime As Date
Get
Return _ArrivalTime
End Get
End Property
Private _Department As String
Public ReadOnly Property Department As String
Get
Return _Department
End Get
End Property
Private _Badge As Integer
Public ReadOnly Property Badge As Integer
Get
Return _Badge
End Get
End Property
End Class
Thank You.
I am experimenting with your controls before we buy them and have a question. I have a class (for sake of demo I have simplified it) that I am binding to a RadListView via a binding list. Can I prevent the Badge column from appearing in the list view? The listview is actually used to display many different types of data so I would prefer a method that did not involve me manually hiding the column.
Public Class Visitor
Friend Sub New(name As String, arrival As Date, department As String, badge As Integer)
_Name = name
_ArrivalTime = arrival
_Department = department
_Badge = badge
End Sub
Private _Name As String
Public ReadOnly Property Name As String
Get
Return _Name
End Get
End Property
Private _ArrivalTime As Date
Public ReadOnly Property ArrivalTime As Date
Get
Return _ArrivalTime
End Get
End Property
Private _Department As String
Public ReadOnly Property Department As String
Get
Return _Department
End Get
End Property
Private _Badge As Integer
Public ReadOnly Property Badge As Integer
Get
Return _Badge
End Get
End Property
End Class
Thank You.