Our blazing fast Grid component built with pure JavaScript


Post by Steveoo61 »

Is it possible to add a value to the search field (filterBar)? without entering the values ​​directly in.

thanks,

Post by pmiklashevich »

Sure, please open this demo and run in console line by line:
bryntum.get('filterByName').value = 'Read';
scheduler.features.filterBar.getColumnFilterField(scheduler.columns.get('name')).value = 'Dave';
// filtering by the field, for which a corresponding column with the filter input exists on the screen, will set the value to the input automatically
scheduler.resourceStore.filter('name', 'Arcady');

Pavlo Miklashevych
Sr. Frontend Developer


Post by Steveoo61 »

thanks

Post Reply