Forum Replies Created
-
Dinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::You can use ES6 for Scripts in ProcessDesigner but be aware that browsers which doesn’t support ES6 feature will have problems. If you want to use ES6 and still be compatible with browsers which use ES5 you can configure the deploy process of your business application.
You can find information about configuring the deploy process in the documentation.in reply to: ECMASCRIPT5Dinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::I mean the order of loading the library parts. Look at this code snippet:
addScript('js/mapsjs-core.js', 'mapsjs-core'); addScript('js/mapsjs-mapevent.js', 'mapsjs-mapevent', ['mapsjs-core']); addScript('js/mapsjs-service.js', 'mapsjs-service', ['mapsjs-core']); addScript('js/mapsjs-ui.js', 'mapsjs-ui', ['mapsjs-core', 'mapsjs-mapevent', 'mapsjs-service']); addStyle('css/mapsjs-ui.css');
I don’t know if this is the right order because I don’t know the library.
If it’s a problem of generating the code then try deploying and look into index.html. Your library should be referenced there.
Dinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::I think the problem is the order of loading your library.
Look at the documentation to learn how you control the order loading the library.Dinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years agoin reply to: Carousel with active pages from another screen?Dinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years agoin reply to: Login problems at appDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
in reply to: “Acquire GPS” in a moduleDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::Hi,
You have to create that Auto Field in your module. You can do this in the Data Workbench while editing the module.
For further information I recommend the documentation regarding the Data Workbench.in reply to: “Acquire GPS” in a moduleDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::Hallo, bitte installieren Sie das unvertrauenswürdige Zertifikat manuell auf dem Gerät und versuchen Sie es bitte erneut.
Beste Grüße
Kahn
Sollte dies nicht funktionieren, können Sie es mit dem Entwickler-Modus versuchen. Dazu tippen Sie im Login Screen mehrmals auf das Simplifier Logo. Sie haben den Modus erfolgreich aktiviert, wenn sich das Logo einmal gedreht hat und wenn bei der Versionsnummer, die Sie unterhalb des Logos finden, ein “-Dev” hinzugefügt wurde. Wenn Sie sich nun versuchen einzuloggen, werden Sie gefragt, ob Sie dem Zertifikat vertrauen wollen.
Warnung: Wenn Sie zustimmen, dass der Client nicht vertrauensvollen Zertifikaten vertrauen soll, wird der Client jegliche Zertifikate akzeptieren, bis dies wieder in den Einstellungen deaktiviert wurde.Dinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::You have to bind this.
document.addEventListener("backbutton", onBackKeyDown.bind(this), false); function onBackKeyDown() { var curr_page = sap.ui.getCore().byId("Application").getCurrentPage(); console.info(curr_page.getId()); if (curr_page.getId() === "PAGE1") { console.info('close pressed'); window.navigator.app.exitApp(); // OK } else { console.info('back pressed'); // window.navigator.app.backHistory(); // <no action this.navBack(); // Uncaught TypeError this.navBack is not a function // window.navigator.app.navBack(); // Uncaught TypeError window.navigator.app.navBack is not a function } }
in reply to: Change function of Handy back button in the AppDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years agoin reply to: Change function of Handy back button in the AppDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years agoin reply to: Trigger Button on MobileDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::You try the following:
Add a button (sap.m.Button) and add the following to the press event like you did in a post above.var fileUploader = $(‘#Create_Image–ui_unifed_FileUploader-fu’);
if (fileUploader !== null)
fileUploader.click();Then add to the onAfterRendering of your screen the following code:
$(‘#Create_Image–ui_unifed_FileUploader-fu’).change(function() {
$(‘#Create_Image–ui_unified_FileUploader1-fu_form’).submit();
});Now hide the button with a CSS rule which says
display: none;
Now you can trigger the hidden button with
sap.ui.getCore().byId(“Id_Of_The_Button”).firePress()
On this way the file chooser will appear automatically.
@jonas.rausch You can’t fire the press event on this way because she uses sap.ui.unified.FileUploader which is a form with an input of type file.
in reply to: Trigger Button on MobileDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years agoin reply to: Trigger Button on MobileDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years agoin reply to: Trigger Button on MobileDinkel
Moderator- Topics: 6
- Replies: 18
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
Has successfully completed the online course Basics - 100.
# 2 years ago::Hi,
I’ve just found a different route in the application “Explored” which I searched some days ago and it gives me all applications including their modules.
Here is a snippet of the Ajax setup:var ajaxSetup = {
type : “POST”,
url : SimplifierSettings.apiBaseUrl + “client/1.0/auth”,
data : JSON.stringify({MacAddress: “random string”}),
contentType : “application/json; charset=utf-8”,
success : _onSuccess,
context : this
};Is it a outdated route?
in reply to: Simplifier API to get all applications