Quantcast
Channel: OutSystems Community
Viewing all 1476385 articles
Browse latest View live

[Forums] Difference from SilkUI's Lisbon Template for websites?

$
0
0

Jorge Martins wrote:

Hi Pankaj Pant,

What distinguishes this from Silk UI's Lisbon Website template?

Hi Jorge,

I have used the silk UI website template in order to create this template, the difference is it's a readymade template and is easy to edit just need to replace the text and images.


Regards,

Pankaj Pant



[Forums] Is it possible to limit inputs on the Calendar Widget

$
0
0

Peter Travers wrote:

Hi,

Is it possible to limit what days a user can select when using the input Calendar Widget??

For Example, can I have it so they can only select weekdays (have weekends grayed out and unselectable).

Or do I have to use validation to ensure they haven't selected a weekend?

Thanks

Peter

I'm pretty sure you have to validate inputed dates for that intent. 

The only option to you have in the widget ptovided by RichWidets is to define the max/min year. You can also have some dates to be displayed different (SpecialDays), as a way to indicate valid/invalid dates :) 

Cheers


[Forums] Triggers in Outsystem

$
0
0

José Lopes wrote:

JitendraYadav wrote:

Hi All,


The best option for this is definitely a trigger on entity at DB level.


Thanks!

I can't agree that the option you purpose is the best. At least fot the most cases

That solution is invisible in the Outsystems platform and it may get harder to maintain.


Agree, keep the trigger inside create or update action or on a BPT process is easier to mantain


[Forums] Service Studio MacOS

$
0
0

Hi everyone!


MacOS have UNIX core. It's possible that I can install the Service Studio for MacOS in a Linux SO (UNIX core too)?


Thank´s!


Best regards,

Ricardo

[Forums] Input Mask Web: Not Masking the Input

$
0
0

Hi Guys,

I am currently doing some telephone number formatting. I downloaded the input mask. Bind the inputid of the textbox to the input mask but it doesn't seem to be working(Using dublin Template). 

Pic 1

Pic 2

[Forums] Dependencies don't load

$
0
0

Yes, I've my platform updated, I've done one more upgrade last night and still happening

[Forge] HtmlConvertToPdf_for_Outsystems10

$
0
0
HtmlConvertToPdf_for_Outsystems10

[Forums] [OneSignal] User ID and Push Notification to User ID

$
0
0

Hello,

I want to ask something about OneSignal Plugin in Outsystems.

Question:

1. How to create User Id in OneSignal? i saw the register User in OneSignalAPI. but the only Output parameter is "Success" and UserId is in input parameter. And also, what are OneSignalPushToken, DeviceHardwareId, and DeviceType?


Thank you!


[Forums] Input Mask Web: Not Masking the Input

$
0
0

Michael Chu wrote:

Hi Guys,

I am currently doing some telephone number formatting. I downloaded the input mask. Bind the inputid of the textbox to the input mask but it doesn't seem to be working(Using dublin Template). 

Pic 1

Pic 2

Hi,

you switch the values, correct one is,

1) MaskDefinition: "(99) 999 9999"

2) InputId: Branch_TelephoneNumber.Id


Thanks,

Balu


[Forums] Check any app is installed in mobile

$
0
0

Hi Hasib,

Are you telling from an Dev point of view or You just want to check within a device itself.

Programmatically for Native Android :

You have to use the package name / class directly, for example to create a new intent to call the twidroid program you'd use the following

 Intent intent = new Intent("com.assif.myApp");

You'd probably want to put a try/catch around for a ActivityNotFoundException for when the application is not installed.

Programmatically for Native iOS  :

You'll need set a custom URL scheme in your second app for that.


Outsystems  :

Use this Plugin

https://www.outsystems.com/forge/component/2622/applauncherplugin/



Cheers,

Assif

[Forums] Check any app is installed in mobile

$
0
0

How can i check if any app is installed in the IOS and Android device both?

[Forums] Input Mask Web: Not Masking the Input

$
0
0

Michael Chu wrote:

Hi Guys,

I am currently doing some telephone number formatting. I downloaded the input mask. Bind the inputid of the textbox to the input mask but it doesn't seem to be working(Using dublin Template). 

Pic 1

Pic 2

Hi!

Shouldn't MaskDefinition be what you've entered on InputId and InputId, the respective value? ;)


[Forums] Dependencies don't load

$
0
0

Hi,

Can you verify if your dependencies are upgraded already properly?, even you try to open your dependencies manually to check if its all ok? 

Thanks,

Balu

[Forge] Advanced Excel

$
0
0
Advanced Excel integration with the export/import of Excel files. Enables data formatting, even automatic creation of Excel charts.

This enables writing of binary multi-sheet excel-files without the use of an office installation.

[Forge] HtmlConvertToPdf_for_Outsystems10_v1

$
0
0
HtmlConvertToPdf_for_Outsystems10_v1

[Forums] The INSERT statement conflicted with the FOREIGN KEY constraint "OSFRK_OSUSR_71O_PASS

$
0
0

P.S. 

You CAN'T save a comment BEFORE creating a new Passenger.
And if it is a NEW passenger, even after you create it, the value in PassengerId (the input parameter) will still be zero.

So, you have to guarantee that no comments can be added to the passenger before it is created, and guarantee that the input parameter PassengerId is updated with the ID returned by the CreateOrUpdate action that saves a new record in Passenger.

Cheers.

[Forums] The INSERT statement conflicted with the FOREIGN KEY constraint "OSFRK_OSUSR_71O_PASS

$
0
0

Hello, just to expand the answer given by José.

Every record in your entity Comment needs to know to which record in the entity Passenger it is related. So you created a Foreign Key (FK) in it, called PassengerId, and defined that it is mandatory (and this makes sense).

As this FK is Mandatory, in the moment you want to create a new record in the Comment entity, you need to provide to which passenger this comment is associated. You probably have the PassengerId input parameter, as this seems to be a DETAIL page, that has this value. So, before SAVING (Create or CreateOrUpdate action) in the action that saves this record into database, you need to add an Assign node and set the PassengerId attribute of the record you are using to store the comment.

If you don't provide a value, the database will accuse an error because it will try to locate in table Passenger the ID, that is not being provided, and will not find it.

I imagine that this Comment entity is an extension of the entity Passenger (the Primary Key is of type PassengerId), as it seems that only a single comment can be entered.

Cheers.

[Forums] how to add comments in a page

$
0
0

José Lopes wrote:

Ankita Jaggi wrote:


You have to assign the PassengerId to the PassengerComment record being created :)


hi José,

I have already assigned the PassengerId but still getting the error.


[Forums] Issue while entring text in any auto complete search.

$
0
0

HI there,


this issue is fixed.


Cheers

Ana

[Forums] Is it possible to limit inputs on the Calendar Widget

$
0
0

Alberto Ferreira wrote:

Hello José Lopes


Very interesting contribution, I didn't know how to use the special days!! 

There is any documentation about the use of the richwidget ?


TIA  

Here it is! (looked up for it just now)
Found out THERE IS a way to disable some dates :)


http://www.dynarch.com/jscal/

Viewing all 1476385 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>