This question is locked. New answers and comments are not allowed.
I have a column in my Telerik MVC Grid called as "Patient Name".
In the database, I have "PatientFirstName" and "PatientLastName" as the columns.
I want to display the Patient Name in the grid as (PatientLastName,PatientFirstName).
In the database, I have "PatientFirstName" and "PatientLastName" as the columns.
I want to display the Patient Name in the grid as (PatientLastName,PatientFirstName).
columns.Bound((o => (o.PatientFirstName + o.PatientLastName))).Title("Patient Name");
This is not working.How can I do this?