Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
After upgrading our QAP server to the September 2017 release (and even after applying Patch 1 and Patch 2), I am receiving errors in my mashup, while the copy on the pre-September 2017 release works fine.
The error is "TypeError; Cannot read property 'applyBookmark' of undefined'. At first I though that this was due to the app.bookmark.apply method returning asynchronously, so I used $.when().done, but I still receive the error. Any ideas?
var strBookMark= strPageURL.substring(9,strPageURL.length);
console.log('strBookmark',strBookMark);
console.log('app=',app);
var promiseBookMark = app.bookmark.apply( strBookMark );
$.when(promiseBookMark).done(
function(strSuccess)
{
console.log('strSuccess',strSuccess);
This bug has already been fixed in the November release, unfortunately, it didn't make it in September patch 2 release.
Hi Aiham,
Thanks for letting me know.