icanjs / multi-select

A multi-select component for CanJS
MIT License
5 stars 3 forks source link

How to capture the click event for 'Select All' #14

Open santoshgiridhar opened 7 years ago

santoshgiridhar commented 7 years ago

Having set <multi-select select-all (itemclick)="itemClick"> .... In ViewModel: 'multi-select itemclick': function(context, ev, params){ //We won't be able to get the value of 'Select All' check box. Only items/options check box entries are logged. console.log('Item was clicked!', params); } Have I missed anything here.