Different Sorting Column
Different Sorting Column
I am struggling with something from some time now . Didnt find anywere.
I am binding grid with data which have following columns
a,b and c.
columns:[{data:"a",orderable:true},{data:"b",orderable:true},{data:"c",orderable:true}]
Server-side enabled for paging, sorting and searching.
My requirement is when I try to sort using column b, I want sort column to be posted to the server as "x.y".
I cant keep my column name as "x.y" because server data is in c# where i cant have Property name with "."
Can we achive it somehow?
Answers
I'm afraid I don't fully understand this. What do you mean by:
Where does the x.y come from?
Allan