I am trying to make a grid groupable
on columns field but the columns are object.
{
Gestionnaire :
{ id: 4, nom:'nomgestionnaire'},
{..},
..
}
I have success for sortable
:
columns: [
field: "Gestionnaire"
title: "Gestionnaire"
sortable:
compare: (a,b) =>
@compareColumnFields(a.Gestionnaire.Nom, b.Gestionnaire.Nom)
]
with @compareColumnFields
function is :
if a is b
return 0
else if a > b
return 1
else
return -1
and for groupable
?
groupable : ...
For those in the same situation as me , I completely change solution. Instead of making me a function that returns true and false , it giving it the object in full, I just give the string . For my example I give directly
a.Gestionnaire.Nom
andb.Gestionnaire.Nom
, and THEN you can call :In fact it was obvious.