Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 286 Bytes

xpages.md

File metadata and controls

10 lines (6 loc) · 286 Bytes

Prevent Dojo from loading - in xsp.properties:

xsp.client.script.libraries=none

Prevent Dojo from loading on a single XPage - add call to blockDojo in beforePageLoad event:

function blockDojo() {
    facesContext.getRequestParameters().setJsLibrary(0);    
}