ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: arbyter on December 17, 2019, 04:09:16 pm

Title: contextmenu listener is action
Post by: arbyter on December 17, 2019, 04:09:16 pm
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.


Title: Re: contextmenu listener is action
Post by: paramvir on December 17, 2019, 09:14:37 pm
Please refer the API docs

https://paramquery.com/pro/api#option-contextMenu

and demo:

https://paramquery.com/pro/demos/context_menu
Title: Re: contextmenu listener is action
Post by: arbyter on December 18, 2019, 02:49:31 pm
i did, but your example code from api-doc is the snippet, i used in my post.

Title: Re: contextmenu listener is action
Post by: paramvir on December 18, 2019, 03:02:34 pm
Ok, thanks for the correction.