Cliente hasMany Solicitud.
I am using CakeDC search plugin.
I need to search inside Solicitud where Cliente.nombre = "myValue". Is this even doable? I paste what I have:
//SOLICITUD MODEL
public $actsAs = array('Search.Searchable', 'Containable');
public $filterArgs = array(
'nombre' => array('type' => 'like', 'field' => array('Cliente.nombre')),
);
I don't know if this is doable or I am fantasizing. Ideas?
You're fantasizing or didn't read the readme.md.
Let me shorten the example from the readme.md for you, it should become obvious:
Notice the
Model.field
notation for theusername
filter.