Sorting a column with mDataProp
Sorting a column with mDataProp
dj_sumaoy14
Posts: 9Questions: 0Answers: 0
when i try to sort a column with a mdataprop config like this
mDataProp: function(s, t, v) {
return t === "display" ? "checkbox" : s.val;
}
the value for sort that will be pass to the server is the word "function" not the s.val
any suggesstions?
mDataProp: function(s, t, v) {
return t === "display" ? "checkbox" : s.val;
}
the value for sort that will be pass to the server is the word "function" not the s.val
any suggesstions?
This discussion has been closed.