Hi I am currently try to bind 2 column using GridDropdown colum
here is my current code:
<telerik:GridDropDownColumn UniqueName="StudentEnrolmentID" DataSourceID="odsStudentName" DataField="StudentEnrolmentID"
ListTextField="Surname" ListValueField="EnrolmentID" HeaderText="Participant"/>
<asp:ObjectDataSource ID="odsStudentName" runat="server"
SelectMethod="GeStudentEnrolmentEntityCollection"
TypeName="Det.PPS.Presentation.Shell.Services.StudentEnrolmentService">
</asp:ObjectDataSource>
currently i am only able to bind surname, i would like to bind firstname as well or combine first name and surname. Please advise how i can achieve this?