Forum Replies Created
-
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: How to upload image or video recordings to simplier content repo #36694::Hi Mr Steinbach,
To upload an image taken on the mobile client, you can use the following sequence (see attachment):
- Capture the image with the mobile action
- Use the Client-Side BO ‘SIMP_FileHelper’ – ‘readFileByUrl’
- Use the Client-Side BO ‘ITIZ_Utilities’ – ‘UploadFile’ to get a session key for the ContentRepo upload
- OR you can directly use the Base64 string from ‘readFileByUrl’ for the upload
Regarding your second comment, I will give you an answer as soon as I talked to my colleagues in mobile development.
Attachments:
You must be logged in to view attached files.Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Email Template cannot show HTML stored as String variable #36693::Hi Vasileios,
The problem here is that the HTML tags in the template input are automatically escaped when generating the template. I think it can also be a security issue when HTML is given as input.
So, I suggest two options for a workaround:
- Configure the HTML in the template and only set the text values as input –> the HTML can be shown in the mail text
- Convert the order summary HTML to a PDF using PDF templates (see https://community.simplifier.io/knowledge/create-a-pdf-template-via-plugin/) and use the Base64 data as mail attachment. Send the mail with attachment via the Server-Side BO Email API (see https://community.simplifier.io/doc/current-release/applications/business-objects/create-business-objects/business-object-api/#1595936660592-f4a3a811-c99f)
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Change the size of the button of a file uploader #36691::Hi Michael,
To change a widget’s appearance, you can work with CSS classes. In the CSS editor (in the application, click on the tab ‘Other’ to find it), define a new CSS class, for example:
.largeButton button { width: 10rem; }
Then, in the property ‘cssClasses’ of the Uploader, enter your new class ‘largeButton’. If everything works correctly, the appearance changes are already visible in the preview.
In this case, since the Uploader contains several sub-items, you have to specifically address the button inside the Uploader.
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: How to delete and add a row in our table #36690::The widget ‘TableEnhanced’, which we added to our Standard Content in February, has the option to display an add button, just as the ‘Table_withAdd’. So you can also use this new table for your add button.
Note that when adding a new row in the table, you only add the row in the UI. To make the changes permanent, you have to implement the logic where the data of the table is stored in the backend.
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Showing data from csv connector call in table via press button #36626::Hi Mehwish,
It seems like your Simplifier user is not allowed to operate on roles, so you also cannot assign a role in the application. Please ask your administrator to give you the respective permissions to read and assign roles.
Another option would be to add a login to your application (the easiest way to do this is to use the login wizard) and execute the connector after the login. Then, if the logged-in user has the permission to execute connectors, you won’t get an error at this point.
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Showing data from csv connector call in table via press button #36618::Check out these two videos from our Intermediate Course where we use the data source to bind data to a list/table:
https://community.simplifier.io/202-2/
https://community.simplifier.io/205-1/
So as Vitali already said, you have to first build the table with a ColumnListItem and the columns that you need, then use the data source property of the ColumnListItem and specify your Connector Call there. Then, drag and drop the data source property from the UI Designer into a story in the Process Designer to define when the Connector Call should be executed (this procedure is also shown in the videos).
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Initialize a ComboBox #36600::Yes, the data source is an easy way of binding that can be configured in the UI Designer and works for Connectors and Business Objects.
If you’re using an SQL connector, you can define your connector, the respective call and the output in the data source. Then, for text/key, define the data source as binding for the property (as you have already done).
Now you still need to tell the app when the Connector/BO should be executed. So, drag and drop the property ‘data source’ to your story in the Process Designer (hover the mouse over the title ‘Data Source’ and you will see an indicator that it can be dragged). A shape will be created automatically that executes the Connector/BO and defines the mapping in the output.
This completes the mapping process.
Attachments:
You must be logged in to view attached files.Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Initialize a ComboBox #36596::Hi Patrick,
This is a bug in the Data Services mapping that has been fixed in Simplifier 7.0.
If an update is not an option for you, you can create an SQL connector for the data scheme and create a connector call to select all items. In the process designer, use this connector call to map the items to the combobox (the datatype of the connector output and the datatype configured in the combobox have to match, though).
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Is it possible to create a new folder inside a Network-Drive from a BO? #36583::Addition:
You can also use the Simplifier plugin ‘ContentRepository’ to store and access files within a folder hierarchy. This plugin is accessible via Serverside BO, which means you can manages files and folders within Simplifier, with BOs that are available on our marketplace.
This article describes how to handle files on a windows share volume with the ContentRepository: https://community.simplifier.io/knowledge/use-contentrepository-plugin-to-handle-files-from-your-windows-share-volume/
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: How to change Content-Type in a POST to make all types of Content-Type available #36573::Hey Alex,
As I also replied in this thread: https://community.simplifier.io/forums/topic/rest-postbody-with-postformat-xml/, the REST Connector currently cannot cover all options for the mime types.
In these cases, we have to work with client-side XHR / ajax calls. If you want, you can leave a feature idea on our feature request portal: https://ideas.simplifier.io/ideas
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: REST postBody with postFormat XML #36572::Alex, regarding your comment: it is true that currently, the options for the postFormat are limited and indeed, in some use cases, it won’t be possible to use Simplifier’s REST connector.
In these cases, we have to work with client-side XHR / ajax calls. We are planning to add more functionality to the REST connector in the future, but I cannot tell you more detailed information when the new functionality will be available.
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Process Workflow feature availability #36571::Hi Alex,
The workflow feature is still under construction, so the current focus is to make the basic functionality work within the scope of Simplifier application and process development.
The BPMN concept is definitely interesting! We are collecting feature ideas from our partners/customers (in general as well as workflow-specific) on this platform: https://ideas.simplifier.io/ideas
Feel free to add a feature idea there.
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: REST postBody with postFormat XML #36570::Hi Satish,
Try to encode your XML in the format ‘window-1252’:
<?xml version="1.0" encoding="windows-1252" standalone="no"?>
If does not work for you, you can try the solution proposed in this thread, with a modified TextEncoder to create the blob: https://stackoverflow.com/questions/44135861/javascript-csv-text-download-in-ansi-windows-1252
However, I have not tested this solution.
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: [BUG] Select dropdown on iOS (apple smarthones and tablets) #36563::Hi Hadrien,
I could not replicate this issue with the ActionSelect, but I have to admit that I’m using an older iOS version.
If this problem still occurs, you can create a new ticket with detailed information (the widgets that you are using, Simplifier client version, iOS version etc.).
Jennifer Häfner
ModeratorHas successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the online course Advanced (320)
Has successfully completed the Intermediate Certification
Has successfully completed the Advanced Certification
2 years, 7 months ago in reply to: Value of input doesn’t update after paste #36561