Forum Replies Created
-
# 1 year ago::
Hi Shivam,
Since this is a Jira REST API issue and not so much on the Simplifier side, I cannot give you a solution to this problem, unfortunately.
I only found this thread in the Atlassian forum where a user also had a problem with base64 files:Maybe this can help you.
in reply to: Add attachments on jira server# 1 year agoin reply to: Property Binding with Special Characters# 1 year ago# 1 year agoin reply to: change input placeholder style in simplifier# 1 year ago::Hi Ashish,
When working with custom CSS for OpenUI5 widgets, it’s often necessary to add the term ‘!important’ after your CSS to make sure the standard CSS is overwritten. For example:
.yourCustomClass{
background-color: black!important;
margin-top: 2rem!important
}Maybe this can solve your problem.
in reply to: Style cell in sheetJS# 1 year ago::Hi Fulya,
in a SimpleForm, a Label always starts a new line. So if you want to have two input fields next to each other, you can implement your SimpleForm like in this example: https://sapui5.hana.ondemand.com/#/entity/sap.ui.layout.form.SimpleForm/sample/sap.ui.layout.sample.SimpleFormToolbar
Or you can set the SimpleForm’s property ‘layout’ to ‘ColumnLayout’, so all labels/inputs are arranged in columns (implemented in this example: https://sapui5.hana.ondemand.com/#/entity/sap.ui.layout.form.SimpleForm/sample/sap.ui.layout.sample.SimpleForm_Column_oneGroup234)
in reply to: How to arrange two input fields side by side# 1 year ago::Hi Maitree,
we have a Plugin for establishing video calls/chats, but this is a paid feature, so you will need a license to use it.
For more information, please contact our sales department: sales@simplifier.io
Thank you!in reply to: video chat/call software# 1 year ago::Hi Klaus,
You can call a template dynamically (e.g. in a server side business object) like this:
var folder = input.folder;
var templateName = input.template;
var template = Simplifier.Template[folder][templateName]();
output.template = template;Note that the template has to exist in both folders.
in reply to: How to call an email template in generic matter# 1 year ago::The widgets on your Simplifier instance are only overwritten, if you import (with the import file containing the respective widgets) and select the ‘overwrite’ option. A Simplifier version update does not change your Widgets, so the changes you made in the Widgets are not affected.
You are right, there are several header properties of Widgets that are not flagged as translatable.
We will look into this, thank you for noticing!in reply to: Translation header property of Generic_Tile# 1 year ago::Since you also can open .csv files in Excel (using the correct delimiter), we usually implement an excel export like in my example above.
If you have to export an .xls file, you can take a look at javascript libraries that export data in the required format, like https://sheetjs.com/opensource.
in reply to: Export to excel functionality in simplifier# 1 year ago::Hi Shivam,
In general, to export data in csv format, you have to convert the json model data from your table to csv format (text separated by semicolons), then create a blob file and save it.
Here is one example how to do this:
Step 1) Convert json model data of table to csv format using the Papa Parse library:
var oJsonData = this.getGlobals().getVar(“oTableData”); //the json model of your table
var oCsvData = Papa.unparse(oJsonData);Step 2) Create blob file and save it:
//download csv file
var oBlob = new Blob([oCsvData], {
type: ‘text/csv;charset=utf-8;’
});
saveAs(oBlob, “my.csv”);In the Papa Parse documentation, you can find more options to format json to csv: https://www.papaparse.com/
in reply to: Export to excel functionality in simplifier# 1 year ago::If your Simplifier user is an Administrator and/or has the required permission (Widgets – Administrate), you can flag the header property of the Generic Tile as translatable yourself:
- On the dashboard, select the ‘Widgets’ tile and search for ‘GenericTile’, click on the edit button (pencil)
- Make sure that the version is ‘OpenUI5 1.60’
- In the property table on the right, look for ‘header’ and make sure the switch for ‘Translatable’ is on
- Click on save (on the upper right corner)
- After making changes in widgets, please reload your application (exit and edit again) and then deploy it
Please let me know if that works for you.
in reply to: Translation header property of Generic_Tile# 1 year ago::In our standard widgets, the Generic Tile’s header should already be flagged as translatable, so it appears in the PO file:
Could you check, if this is also the case on your Simplifier system?
- On the dashboard, select the ‘Widgets’ tile and search for ‘GenericTile’, click on the edit button (pencil)
- Make sure that the version is ‘OpenUI5 1.60’
- In the property table on the right, look for ‘header’ and make sure the switch for ‘Translatable’ is on
- Click on save (on the upper right corner)
- After making changes in widgets, please reload your application (exit and edit again) and then deploy it
in reply to: Translation header property of Generic_Tile# 1 year ago::Hello Shivam,
you could use the widget ‘sap.ui.unified.Calendar’ (documentation: https://openui5.hana.ondemand.com/api/sap.ui.unified.Calendar):
You can find an example implementation here: https://openui5.hana.ondemand.com/1.60.31/#/sample/sap.ui.unified.sample.CalendarSingleDaySelection/previewin reply to: how to use calendar in simplifier application# 1 year ago::Hello Shivam,
the sap.ui.Table should be available as a standard widget, just search for ‘ui_table_Table’ in the UI Designer or in the Widgets tile and you should find it.
You can find an example implementation here: https://sapui5.hana.ondemand.com/1.60.32/#/sample/sap.ui.table.sample.Basic/previewin reply to: how to use GridTable in simplifier