Esempio Edit e Aggiorna w2ui Versione 1.5.1 on Click and onSelect together NOW is working changing the on Click in this way,
clicking Variazione Residenza you can see the right final array in console browser, you can select at most 5 records at time:
     onClick:function(event){
       //event.preventDefault();
       event.onComplete = function(event) {
         id = event.recid;
         var tg = $(event.originalEvent.target);
         if (tg[0].tagName == 'DIV') tg = tg.parents('td');
         if (tg.hasClass('w2ui-col-select')) {
           console.log('clicked on select row checkbox');
         }
         else{
           $('#grid_gridVersione151_rec_'+id).find('td').eq(4).click();
         }
       };
     },