Hi,
I have a method that return result listed in drop down.
Private Sub AddDropDown(ByVal Cell As TableCell, ByVal Typecode As String, ByVal Typestr As String, Optional ByVal resultcode As String = "", Optional ByVal Editmode As Boolean = False)
Dim rdCombobox = New RadComboBox
rdCombobox.ID = "rd" + Typecode
Dim dt As DataTable = GetDropdownData(Typestr, 1)
rdCombobox.DataSource = dt
rdCombobox.DataTextField = "TYPEresult"
rdCombobox.DataValueField = "TypeResultCode"
rdCombobox.DataBind()
Cell.Controls.Add(rdCombobox)
End Sub
How can get similar result listed in a checkbox instead of a
dropdown ?
Thanks
Go to the complete details ...