hi
tried to implement pq-contextmenu following the api docu.
from api:>> $( selector ).pqGrid( { contextMenu: {on: true, items: [{
name: 'Undo',
listener: function(evt, ui, item){
this.History().undo();
}
}, ... ]} } );
didnt work, then i mistrusted the naming "listener". Changed to "action", then it works.