Hi there.
I have a radgrid that has two GridDropDownColumns both using the same datasource to display a list of users.
When I click the second column header it sorts the first column. I.e. I clicked the Overseer column below but it sorted the Author column.
<
telerik:GridDropDownColumn
AllowFiltering
=
"false"
AllowAutomaticLoadOnDemand
=
"true"
DropDownControlType
=
"RadComboBox"
DataField
=
"ProcessAuthorUserID"
DataType
=
"System.Int32"
HeaderText
=
"Author"
HeaderStyle-Width
=
"110px"
SortExpression
=
"DisplayName"
UniqueName
=
"ProcessAuthorUserID"
DataSourceID
=
"SqlDataSource2"
ListTextField
=
"DisplayName"
ListValueField
=
"UserID"
>
<
ItemStyle
VerticalAlign
=
"top"
Width
=
"60px"
/>
</
telerik:GridDropDownColumn
>
<
telerik:GridDropDownColumn
AllowFiltering
=
"false"
AllowAutomaticLoadOnDemand
=
"true"
DropDownControlType
=
"RadComboBox"
DataField
=
"DOUserID"
DataType
=
"System.Int32"
HeaderText
=
"Overseer"
HeaderStyle-Width
=
"110px"
SortExpression
=
"DisplayName"
UniqueName
=
"DOUserID"
DataSourceID
=
"SqlDataSource2"
ListTextField
=
"DisplayName"
ListValueField
=
"UserID"
>
<
ItemStyle
VerticalAlign
=
"top"
Width
=
"60px"
/>
</
telerik:GridDropDownColumn
>
Thanks in advance. :-)