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

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

$
0
0

Hello José Lopes


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

There is any documentation about the use of this richwidget ?


TIA  


[Forums] how to add comments in a page

$
0
0

Ankita Jaggi wrote:

hi,

please explain the meaning of this error and i wanted to save the comment in the input box when the save action is performed  after save button is clicked but I am getting the above error.The comment is not getting save in the entity.

I have two entities Comment which having (comment and PassengerId) and Passenger entity .

I want to save the Comment and aftr clicking the particular passenger that comment should be present there.

1st page:

 2nd page:

3rd page:


4th page:


Please someone help to resolve this issue.


Thanks

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


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

$
0
0

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  

[Forums] how to add comments in a page

$
0
0

hi,

please explain the meaning of this error and i wanted to save the comment in the input box when the save action is performed  after save button is clicked but I am getting the above error.The comment is not getting save in the entity.

I have two entities Comment which having (comment and PassengerId) and Passenger entity .

I want to save the Comment and aftr clicking the particular passenger that comment should be present there.

1st page:

 2nd page:

3rd page:


4th page:


Please someone help to resolve this issue.


Thanks

[Forums] Spare Ticket for Developer Conference, 6th 7th Nov - Lisbon

$
0
0

Hi,

Does anyone have spare tickets for Lisbon Developer conference on 6th, 7th Nov? After two ideally.


Thanks, Jon Idle

[Forums] Problems with Save, download and upload buttons

$
0
0

Hi,

I tryed your app and had some problems saving data (lost all data). Tryed to export data as Json and import before saving, in order to overcome this project and again errors came back. 

Tryed in OS 10 platform.

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

$
0
0

Akanksha Pandey wrote:

hi,

please explain the meaning of this error and i wanted to save the comment in the input box when the save action is performed  after save button is clicked but I am getting the above error.The comment is not getting save in the entity.

I have two entities Comment which having (comment and PassengerId) and Passenger entity .

I want to save the Comment and aftr clicking the particular passenger that comment should be present there.

1st page:

 2nd page:

3rd page:


4th page:


Please someone help to resolve this issue.


Thanks

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


[Forums] Dependencies don't load

$
0
0

Alistair Petersen wrote:

Hi. Same story on my side. 

Outsystems 11 and Personal Environment 11.0.108.1

Regards

I'm stepping out of this because I'm not busy with a production app. What I did find in the PlanetHopper example after (holds my head in shame) deleting the module.. is that it popped up in a folder called Independent Modules. The QuickApp template is only supported to work up to PDE 10.4 if I recall correctly. Having said that - the module seems to be working fine after updating the dependencies. 



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

$
0
0

hi,

please explain the meaning of this error and i wanted to save the comment in the input box when the save action is performed  after save button is clicked but I am getting the above error.The comment is not getting save in the entity.

I have two entities Comment which having (comment and PassengerId) and Passenger entity .

I want to save the Comment and aftr clicking the particular passenger that comment should be present there.

1st page:

 2nd page:

3rd page:


4th page:


Please someone help to resolve this issue.


Thanks

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

$
0
0

Peter Travers wrote:

José Lopes wrote:

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 you have, in the widget provided by RichWidets is to define the max/min year. You can also have some dates to be displayed differently (SpecialDays), as a way to indicate valid/invalid dates :) 

Cheers


Thanks for the reply, will have a look into validation checks.

What do you mean by having dates displayed differently (SpecialDays)??  

Thanks

Peter


This option allows you to display specific dates differently 

(i.e. JAN 21st and FEB 22nd would be "[1: 21], 2:[22]")

Cheers

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

$
0
0

José Lopes wrote:

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 you have, in the widget provided by RichWidets is to define the max/min year. You can also have some dates to be displayed differently (SpecialDays), as a way to indicate valid/invalid dates :) 

Cheers


Thanks for the reply, will have a look into validation checks.

What do you mean by having dates displayed differently (SpecialDays)??  

Thanks

Peter


[Forums] how to add comments in a page

$
0
0

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.

[Forge] Date Carousel

$
0
0
This is a pager/carousel for weekdays.

[Forums] New v11 Screen Templates not showing

$
0
0

Have uprgaded my personal environment to v11 and installed all of the new modules from the forge but for some reason when I create a new application with TopMenu_Template I am unable to select the screen templates when adding a new screen.  

Anyone else having this issue?  Have i missed something in the setup?

[Forums] Check any app is installed in mobile

$
0
0

assif_tiger wrote:

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


Hi Assif,

I am talking of development point of view and wanted to check in a real device through my application.

Suppose i need to check in my app that XYZ application is installed or not.

Regards,


[Forums] Wrong Local header signature

$
0
0

Hi again!

To try to prevent corruptions problems, I have downloaded in my personal computer, and use a hash calculate app, and re-download in my client computer. The hash is the same, so I belive that is not corruption problem:

And I have tried to re-install again, but same error occurs.

Maybe some problem in my On-Premise Outsystems Infrastructure?


Regards,
Carlos.

[Forums] how to add comments in a page

$
0
0

Eduardo Jauch wrote:

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.


Can you please ellaborate a little more and how to update the PassengerId


[Forge] Google Distance Matrix API

$
0
0
The Google Maps Distance Matrix API is a service that provides travel distance and time for a matrix of origins and destinations.

[Forge] Statistics.Net

$
0
0

Implements functions from the math.net library, specifically the numerics api.

Following functions exposed:

  • Normal Distribution
  • Inverse Normal Distribution

[Forge] Google Distance Matrix API Demo

$
0
0
An example of how to use Google Distance Matrix API
Viewing all 1476385 articles
Browse latest View live


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