v7.3.0

What's new in TaskBoard v7.1.0

Multi-word column search

The FilterBar column search feature has been enhanced to support multi-word searches. Users can now enter multiple keywords separated by spaces in the column search input field. The search will yield tasks that contain either all (AND), or any (OR) of the specified keywords in the configured TaskModel fields. The previous single-word or RegExp search functionality is still available and remains the default.

new TaskBoard({
    features : {
        filterBar : {
            fields               : ['name', 'description', 'prio', 'category'],
            keyStrokeChangeDelay : 100,
            allowRegExp          : true,
            showMatchModeTrigger : true
        }
    }
})

Search result highlighting

When using the FilterBar feature, you can now configure it to search for multi-word matches in multiple fields, and to highlight the matches in the search results. Try it out in the updated column-search demo — or right here:

new TaskBoard({
    features : {
        filterBar : {
            fields : [ 'name', 'prio' ],
            keyStrokeChangeDelay : 100,
            showMatchModeTrigger : true,
            highlightMatches     : true
        }
    },
    ...
});

Contents