[Forge] New Relic RUM for Web
[Forge] New Relic RUM for React
[Forge] Dynatrace RUM for React
[Forge] Raiser's Edge - Permission and Consent Interface
[Forge] Permission and Consent Framework Manager
[Forge] Mobile Phone Validation - Realtime
[Forge] Launch from Image - Web
[Forge] Launch from Image - Mobile
[Forge] GDPR - Data Dictionary
[Forge] Enterprise Risk Management
[Forge] Generate PowerPoint
[Forge] AUS Business Name and Details - Realtime
[Forge] Subtle Crypto Lib
[Forge] UK Business Name and Details Lookup - Realtime
[Forums] Cannot I use the outcome of a json serialize in a aggregate
oke,
then I will try it again
and maybe tommorow make a pagination on the crew . Sometimes there are a lot of names.
Someone else feedback on my first reactive app ?
[Forums] Can I open a screen inside a screen?
Hello people.
How can I open a screen inside an screen. It can be like gmail, when we are writing a new email. But if I can place it in the middle of the screen it'll be better.
Do you know some training showing how to do it [if possible, using the best practices and what to avoid]?
Thank you all very much.
[Forums] Address Lookup Feedback
Maybe a little off-topic, but I've just been using your companies house address validator, and as someone new to OutSystems I'm finding it hard to access the retrieved UK Company Detail from inside your cool Business Address Validation widget.
I'm using your module as a dependency and I can't see any public properties. As an OutSystems noob I may well be following the wrong design pattern - is there a simple way to hook in to the selected company, or is that not how it's supposed to be used? Is the widget perhaps just a demo for the callouts? But then why mark it Public?
[Forums] Cannot I use the outcome of a json serialize in a aggregate
wrote:
@Roelof: No, Aggregates generate database queries, and since your record list is not in the database (but in Server memory), you cannot query them. There's no equivalent to .NET Linq in OutSystems.
The closest you can come is to use the List Actions like ListFilter, that allows you to retrieve certain elements from a List based on a condition. Note that it runs in Order(N) though, so it doesn't perform too well on very large lists.
I came here to comment that with SQL server, you can combine results from JSON with data from your database tables by using Advanced SQL widget. Then I noticed that Personal Environment databases are at compatibility level 120 instead of 130, which is needed to use OPENJSON() function in SQL clauses.
Query: Select name, compatibility_level from sys.databases
produces output:
On quick try, I did not manage to change my personal environment's database to have compatibility level 130, but maybe there's a way to do so.
When this issue with compatibility level is sorted out (think external databases, on-premises, cloud installations or pretty please call to OS support) here's the trick:
- create structure from JSON
- create advanced sql with original JSON as input and this freshly created structure as output
- select/filter/join data from this JSON structure as you wish
Here's Microsoft documentation on how to query JSON: https://docs.microsoft.com/en-us/sql/relational-databases/json/convert-json-data-to-rows-and-columns-with-openjson-sql-server?view=sql-server-2017
More info from here: https://docs.microsoft.com/en-us/sql/relational-databases/json/json-data-sql-server?view=sql-server-2017
[Forums] Reflow function is not working
Hi Furkan,
I'm assuming you need to redraw the chart, I remember having had similar problems in the past when resizing the container that had a chart in it.
This is a sample JS code that will resize/redraw the first Chart in your page, tweak this is you have more than
one Chart in the same page (or get by ID for example):
Highcharts.charts[0].setSize( {YOUR_WIDTH} , {YOUR_HEIGHT} , doAnimation = true);
Let me know if this worked,
Hermínio
[Forums] How to integrate Payment gateway in web app in Outsystems11?
Yeah, the warnings might be tuned down a bit from OutSystems' side, "cannot be safely installed" is a bit too much.