Convert Object to JSON

@jamesw u can try
Custom formatter ;

<script>
        dmx.Formatter('array','stringify',  function(val) {
            return JSON.stringify(val);
        });
</script>
1 Like