outsystems

Portuguese Vehicle plate structural verification

倖福魔咒の 提交于 2019-12-25 18:53:21
问题 I want to validate if a plate of a Portuguese car has a valid structure. Portuguese Plate is XX-XX-XX alpha numeric. It's Alpha numeric but you can´t have a number and a Char on the same position Example : A5-99-AB -> It's wrong 55-99-AB -> it's right Although there are sequences that are not yet valid according to PT plate rules (e.g 2 sets of letters AA-00-AA ) this is something that I do not pretend to validate since it changes often. 回答1: Try let re = /^([A-Z]{2}|\d\d)-([A-Z]{2}|\d\d)-([A

Building OutsystemsNow for android on Android Studio getting dexException

十年热恋 提交于 2019-12-24 02:16:46
问题 I've imported the Outsystems Now android app into Android Studio. After several hours of trying to import the project and resolve all module imports. I'm currently getting this error with I can't find out whats wrong. This is the app i'm trying to build run: OutsystemsNow-Android Error:Execution failed for task ':dexDebug'. > com.android.ide.common.internal.LoggedErrorException: Failed to run command: /Users/nblocal/Desktop/android_Eclipse/sdk/build-tools/21.1.1/dx --dex --output /Users

Javascript tooltip help and color change

戏子无情 提交于 2019-12-12 03:32:47
问题 I am fairly new with Javascript. Now, what I need is that I have a link in my projectXYZ which leads to another projectABC. I need to change the color of the link and show a tooltip dialog for the MouseOver event of the link. I tried to change the color, but could not succeed with the tooltip. Is there a combined solution which fulfills these requirements ? Thanks in advance. 回答1: Usually it is said to be sufficient to add a 'title' attribute in tour DIV's and it will show up as tooltip on

Html2PdfConverter Sample Conversion

a 夏天 提交于 2019-12-07 15:34:33
问题 I am new to Outsystems and having a page where each users signs an agreement. Every time the agreement is signed it needs to be converted in to pdf and attached in to email and sent. I have set up all the email part, for converting the page in to PDF I have installed the extension. But I am I am not sure how to proceed. Can I have any sample appliccation where it is being used. 回答1: First you have to configure the HTML2PDFConverter extension. To do that, open the extension through your web

How to create text file in outsystems

谁都会走 提交于 2019-12-06 09:57:32
问题 I want to create a text file in outsystems. I have data in an entity and I want to create a text file using that entity's attribute values. Can anyone provide an example showing how this can be done? 回答1: You can use the TextToBinaryData function and use its result in the Download node as file content , with the Mime-type set to "text/plain" . The TextToBinaryData is available in the Binary extension which you probably have already installed in your environment, but perhaps you need to use

Html2PdfConverter Sample Conversion

假装没事ソ 提交于 2019-12-05 18:57:16
I am new to Outsystems and having a page where each users signs an agreement. Every time the agreement is signed it needs to be converted in to pdf and attached in to email and sent. I have set up all the email part, for converting the page in to PDF I have installed the extension. But I am I am not sure how to proceed. Can I have any sample appliccation where it is being used. First you have to configure the HTML2PDFConverter extension. To do that, open the extension through your web browser, and follow the instructions on the "installation instructions" page. After completing the configuring

How to create text file in outsystems

∥☆過路亽.° 提交于 2019-12-04 17:42:04
I want to create a text file in outsystems. I have data in an entity and I want to create a text file using that entity's attribute values. Can anyone provide an example showing how this can be done? You can use the TextToBinaryData function and use its result in the Download node as file content , with the Mime-type set to "text/plain" . The TextToBinaryData is available in the Binary extension which you probably have already installed in your environment, but perhaps you need to use add/remove references to make it available in your module. You can use the Download node in any screen action

Workaround for CSS variables in IE?

一笑奈何 提交于 2019-12-03 19:00:59
问题 I'm currently developing a web application in Outsystems in which I have the need to customize the CSS, in which I'm using variables. I need to guarantee the app works cross-browser, including in Internet Explorer. IE doesn't support CSS variables, as you can see in the picture below from this source. Since I have to use CSS variables, is there any workaround for the usage of variables in IE? 回答1: Yes there is a way, the same way you make any css compatible: use a specific css fallback that

Workaround for CSS variables in IE?

我的未来我决定 提交于 2019-11-30 04:33:48
I'm currently developing a web application in Outsystems in which I have the need to customize the CSS, in which I'm using variables. I need to guarantee the app works cross-browser, including in Internet Explorer. IE doesn't support CSS variables, as you can see in the picture below from this source . Since I have to use CSS variables, is there any workaround for the usage of variables in IE? Yes there is a way, the same way you make any css compatible: use a specific css fallback that is supported by the browser. body { --text-color: red; } body { color: red /* default supported fallback