Hello! I’m trying to add a custom button to my Skuid page, but outside of a page title. I followed this guide pretty closely:
http://help.skuidify.com/m/supercharg…
But when I look at my page it is blank. Upon inspecting the developer console in Chrome, I find the following message:Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check http://xhr.spec.whatwg.org/.
Here’s the javascript I used; again, pretty much the same as the guide above:skuid.componentType.register('addAssessment', function(element) { var btn = jQuery('New Assessment').button() .on('click', function() { window.open('https://na6.salesforce.com/a21/e?retURL='); }); element.append(btn); });
Any advice? Thanks! Eulogio