Aquí está el código: http://jsfiddle.net/Gr3fT/1/Knockoutjs: Cómo filtrar por observableArray parámetro
Cómo filtrar personRoles
por role
propiedad?
Cada lista debe tener solo artículos propios role
.
Gracias.
Aquí está el código: http://jsfiddle.net/Gr3fT/1/Knockoutjs: Cómo filtrar por observableArray parámetro
Cómo filtrar personRoles
por role
propiedad?
Cada lista debe tener solo artículos propios role
.
Gracias.
Esta función se activa (basado en http://knockoutjs.com/examples/animatedTransitions.html :)
get: function(role)
{
return ko.dependentObservable(function()
{
return ko.utils.arrayFilter(this.personRoles(), function(item)
{
return item.id == role;
});
}, viewModel);
}
Podría ayudarte.
Este ejemplo se utiliza básicamente para la matriz observable de filtro pasando los parámetros de entrada en el evento de tecla arriba.