B"H
Hi,
I have a question regarding the smart UI Add document's Upload screen.
As you can see in the set of screenshots below, whenever I upload a document inside a specific folder, I get this file properties screen, after I choose the file to upload from my system.
How Can I get to this upload window from a localhost of an external system?
To make my question clearer:
I added a code snippet which resides in the file csui_overide_style_kit/pages/app.html:
csui.initialize(function() {
'use strict';
csui.authenticate(function() {
csui.require(['csui/pages/start/start.page.view', 'csui/lib/domReady!'
], function (StartPageView) {
var startPageView = new StartPageView();
startPageView.render();
});
});
});
this code will retrieve the home page from a far system with the help of a customized loader.js file
What is the equivalent set of commands to invoke the "file upload" operation as described in the images below?
Thanks