On my RadGrid have a column of DropDownLists. I use those DropDownLists to present the sting definitions(from another table) of foreign keys of the table to which i bound my RadGrid over my datasource. Such as:
<
telerik:GridTemplateColumn HeaderText="Sube" SortExpression="SubeId" UniqueName="SubeIdddl" AllowFiltering = "true" filterlistoptions="AllowAllFilters" >
<ItemTemplate >
<asp:DropDownList ID="DropDownList1" runat="server" DataValueField = "SubeID" DataTextField = "SubeAdi"
DataSourceID="MyDataSourceSubeler" SelectedValue='<%# Bind("SubeId") %>' Enabled = "false" Width = "200">
</asp:DropDownList>
</ItemTemplate>
<ItemStyle Width="200px"></ItemStyle>
</telerik:GridTemplateColumn>
However it throws a worktime error saying that:
Microsoft JScript worktime error: Sys.WebForms.PageRequestManagerServerErrorException: Expression expected
How can i handle that? thanks...