We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Understand OW ping javascript | Forum

Marcus
Marcus Aug 2 '19

Hi I am trying to learn how to use oxwall ping but I can't figure out where this code gets data from:


OW.getPing().addCommand('skeleton_ping', {
            params: {},
            before: function()
            {
                this.params.counterOldValue = counterOldValue;


            },
            after: function( data )
            {
                //alert(data);
                counterOldValue = data.counterNewValue;
                $('#skeleton_ping_counter').html(data.counterNewValue);
            }
        }).start(1000); // Time interval in milliseconds


It says data is null. Anyone please.

The Forum post is edited by Marcus Aug 2 '19
AppXprt
AppXprt Aug 3 '19
Instead of alert use console.log(data) for dumping variables / objects (you'll have to check browser console for output).
The Forum post is edited by AppXprt Aug 3 '19
dave Leader
dave Aug 3 '19
my advice, download a copy of agent ransack and use it to find stuff.  Thats how i do it. :)  Its all about the tools you use... 


https://www.mythicsoft.com/agentransack/


Its a search utility you use on your pc, you can search the entire oxwall script (or any script) for keywords.  


Hope that helps. 



Is this code from the skeleton plugin ?

AppXprt
AppXprt Aug 3 '19
That may work well, but anyone using client side JS needs to know that console.log is the official default way to dump objects.
Marcus
Marcus Aug 3 '19
Thanks so much for teaching me all this stuff guys