Forum Replies Created
-
Malfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::Hi,
this is happening if you delete the widget in the ui designer where its mapped to.
Malfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years agoin reply to: How to change the app titleMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::Hello,
the Simplifier Server Action for sending emails is using plain text so if you want to send html mails you should use an email connector instead.
And you should wrap a table around your rows like this.
<table><tr>…</tr></table>
Im doing this by using a template where im giving in my dynamic rows and after this i give the generated template into the email connector.
Please find below a transport with my example application.
in reply to: Dynamic HTML code insertion in Email TemplateMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::Hello,
i have no problem with uploading files other than txt or jpg into the content repo.
Please find attached my demo application where i tested this.
in reply to: Upload different format filesMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::Hello,
please find attached an example where i’m generating a table with script.
in reply to: How to set data in table by scriptingMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::Hello,
here you can find a transport with an updated shopping list application where i’ve added a filter with a multi combo box.
in reply to: MultiComboBox no data issueMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::hello,
with the m.Table there is no way to set auto sorting menu
the other way is to use the table.Table
https://openui5.hana.ondemand.com/#/api/sap.ui.table.Table
here you have on each column a property to activate the sorting.
but the table.Table is only for desktop use so if your application should work on other Devices like Tablets or Smartphones you should not use this Table.
One more way is to create an extended control (Scripted Widget) where you can implement some logic for column sorting accessibility
in reply to: Sorting in Simplifier tableMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::Hello,
yes you need to decode the data.
the best way to do this is using a business object.
Please find attached an example how to do this.
// read xml with connector var result = Simplifier.Connector.TestXML.getXML().result; output.result = result; //convert RESTTextResult(xml) to javascript object //convert xml to json var RESTTextResultJSON = Simplifier.Util.xml2json(result.RESTTextResult); //parse json to javascript object var RESTTextResult = JSON.parse(RESTTextResultJSON); //output data output.RESTTextResult = RESTTextResult; //convert RESTBinaryResult(base64) to javascript object //convert base64 to xml RESTBinaryResultXML = Simplifier.Util.decodeBase64(result.RESTBinaryResult); //convert xml to json var RESTBinaryResultJSON = Simplifier.Util.xml2json(RESTBinaryResultXML); //parse json to javascript object var RESTBinaryResult = JSON.parse(RESTBinaryResultJSON); //output data output.RESTBinaryResult = RESTBinaryResult;
Malfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years ago::Hello,
as you can find in the UI5 Documentation the required flag by the input is just for accessibility purposes and dosn’t affect your application logic.
So you have to check the field within process designer to find out if its filled.
https://openui5.hana.ondemand.com/#/api/sap.m.Input
required
boolean
false
Indicates that user input is required. This property is only needed for accessibility purposes when a single relationship between the field and a label (see aggregation labelFor of sap.m.Label) cannot be established (e.g. one label should label multiple fields).in reply to: Required validation UsageMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years agoin reply to: Internal error while copying connectorMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years agoin reply to: Internal error while copying connectorMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 2 years agoin reply to: change data source IP addressMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 3 years agoin reply to: How to call stored procedure for SQLite and MySQL dbMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 3 years ago::Hallo,
dies sieht für mich nach einem Fehler in den Übersetzungsdateien aus.
Der Simplifier bietet eine Rest API an um defekte Übersetzungsdateien neu zu Generieren.
Um Prüfen zu können weshalb die Übersetzungsdateien Fehler aufwerfen würde ich Sie bitten uns einen Transport der Applikation zur Verfügung zu stellen.
Dieser sollte natürlich die Applikation vor dem ausführen des Generators beinhalten.
POST http://<your_instance>/develop/repairTranslation/<Application_Name>
in reply to: Statt Texte werden Variablennamen angezeigtMalfurion
Keymaster- Topics: 0
- Replies: 94
Has successfully completed the online course No-Code.
Has successfully completed the online course Low-Code.
Has successfully completed the online course Pro-Code.
# 3 years ago::Hello,
you can download our mobile client for android and ios here.
https://community.simplifier.io/documentation/getting-started/simplifier-mobile-client/
Greetings
Mathieu