In editmode it works fine. In regular view mode it shows nbsp;
I think this is something to do with me using LinqtoSQL to populate? Can someone show me how to do this differentl so it works?
Thanks.
Justin Rumpf
I think this is something to do with me using LinqtoSQL to populate? Can someone show me how to do this differentl so it works?
Thanks.
Justin Rumpf
<
telerik:GridDropDownColumn
DataSourceID
=
"ReportNameddlist"
ListTextField
=
"ReportName"
ListValueField
=
"ReportName"
UniqueName
=
"ddReportName"
SortExpression
=
"ReportName"
HeaderText
=
"Report Name"
DropDownControlType
=
"DropDownList"
DataField
=
"ReportName"
>
</
telerik:GridDropDownColumn
>
editor =
CType
(editMan.GetColumnEditor(
"ddReportName"
), GridDropDownListColumnEditor)
Dim
ReportNameddList
As
DropDownList = editor.DropDownListControl
ReportNameddList.DataSource = (From r
In
DbContext.SubscriptionReportNames
Select
r.ReportName).ToList()
ReportNameddList.DataBind()