Search⌘ K
AI Features

Adding Filtering Contacts to our Application

Explore how to implement a contact filter in a Marionette.js List view by adding a text input and handling form submissions. Understand how to capture input values and trigger events that update the displayed collection. This lesson helps you create a dynamic filter feature that enhances user experience in managing contacts.

In our List view, we’d like to be able to filter contacts and display only those that contain a given string. To allow users to do that, let’s add a text input field to our existing panel. Our List view will ...