E
egarcia
Guest
Hello Stefan, A couple of things: - The progress.jsdo.js file is distributed as part of the Mobile App Builder and is not specific to a version of OpenEdge. This means that if you are using the Mobile App Builder, you should have access to progress.jsdo.3.1.js which is the latest version. - It looks that the issue with unsubscribe is that the scope is not specified in when doing the subscribe. Internally, the code matches the the scope for the subscribe and the unsubscribe. In this code, subscribe is not specifying a scope and unsubscribe is using "jsdo" as the scope. jsdo.subscribe('afterInvoke', 'CustomRead', onAfterInvokeCustomRead) jsdo.unsubscribe('afterInvoke', onAfterInvokeCustomRead, jsdo ); I hope this helps.
Continue reading...
Continue reading...