Box Content Uploader - Shows Close button though the onClose Function is not used
AnsweredI am integrating the Box Content Uploader in Salesforce, Close button appears when i haven't specified the onClose function in the code, I am just using the following code and successfully upload the files but i dot not want close button to show, can any one help me.
var uploader = new Box.ContentUploader();
uploader.show(folderId, tokenJs, {
container: '.container'
});
-
Hi , thanks for using the content uploader!
An easy workaround is to apply some css like:
.bcu-footer-left > .btn {
display: none;
}
Sample codepen: https://codepen.io/box-platform/pen/rEzKya
Please sign in to leave a comment.
Comments
2 comments