i have a update and delete listeners working fine but the create listener is only working for the user who created the object
with condition or without it. same not working.
I simplified the code to only do a console log
ServiceOrderOffer_StatusChannel = Backendless.Data.of(‘service_order_offer’).rt();
ServiceOrderOffer_StatusChannel.addCreateListener(function (SOobj) { console.log("Got Offer"); }, function (error) { console.log(error); });