Skip to Content (Press Enter)
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Home
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Platforms
OutSystems.com
Personal Edition
Community
Resources
Support
Search in OutSystems
Log in
Get Started
Community
/
Ideas
Ideas
Show advanced filters
Status
(All Statuses)
New
On our radar
Working on it
Not right now
Implemented
Out of scope
Category
(All Categories)
1CP
Aggregates & Queries
AI/ML
App Feedback
Architecture & Governance
Backend
Builtin & User functions
Cloud
Collaboration
Community
Components
COVID-19
Data & Integrations
Database
Debugger
Documentation
End-user Management
Forge
Forums
Frontend (App Interfaces)
Ideas
Install Processes
Jobs
Licensing
Lifetime
Mobile
Other
OutSystems Developer Cloud
OutSystems UI
References
Service Center
Service Studio
Training
10911
ideas
Trending
Latest
Most liked
IDE plugins
Created on 10 May 2010
Afonso Metello
37
Service Studio SDK with some kind of API that enables programers to develop plugins that generate OutSystems "Code" and extend the IDE
1772
Views
16
Comments
On our Radar
Service Studio
Multi-language ignore Text used in element Style Classes
Created on 05 Apr 2024
Sebastian Lund
5
When editing translations in Service Center and defining which strings should be translated and which should not, Text found in Style Classes is also added to this list. Translating CSS adds unnecessary risk and complexity to the application. Ideally Text used in Style Classes is either ignored or default behavior is "Don't Translate". it's generally not a common or recommended practice in web development when working with i10n or l18n. Current list of Text used for translations.
159
Views
6
Comments
New
Service Studio
Including Amazon DynamoDB in Integration Studio
Created on 12 Jun 2023
Bhanu Pratap
10
Currently, if you want to integrate with Amazon DynamoDB, a popular NoSQL database service provided by Amazon Web Services (AWS), you would need to use a Forge component called Amazon DynamoDB Connector. This Forge component provides pre-built connectors and actions that simplify the process of integrating OutSystems applications with DynamoDB.Simplified development: With native support, developers wouldn't need to rely on a third-party Forge component. They could directly access DynamoDB functionalities through Integration Studio, reducing the need for additional installation and configuration steps.Enhanced productivity: Native support would provide a seamless development experience within the OutSystems environment. Developers could leverage visual tools, such as drag-and-drop actions and configuration wizards, to quickly build integrations with DynamoDB.Standardization and stability: OutSystems could ensure that the integration with DynamoDB is well-maintained and kept up to date with the latest changes in DynamoDB's APIs. This would provide developers with a more stable and reliable integration option.Easier learning curve: By incorporating DynamoDB integration into Integration Studio, OutSystems could provide documentation, examples, and tutorials specific to DynamoDB, making it easier for developers to learn and utilize the service.
152
Views
0
Comments
New
Data & Integrations
Define webblocks event run order in a screen
Created on 18 Sep 2025
Miguel Grilo
1
The idea is simple, so we can define events in a webblock and the idea is that when we put the webblock in a screen we need to assign some action to those events and the idea is have the possibility of define the order that those events should run when the screen is rendered. Regards Miguel Grilo
103
Views
5
Comments
New
Frontend (App Interfaces)
Open PopupEditor from an Action
Created on 05 Mar 2015
Justin James
31
Right now the pattern is to put a hidden link on the screen and use "Widget Click" to trigger it. That's kind of ugly and we have the need often enough that this is a hassle. There should just be an Action to make a popup occur, have it work like the "go to this page" does, but as a popup.
1482
Views
2
Comments
On our Radar
Frontend (App Interfaces)
Add ability to disable client side sort when using SetColumnFilterOptions
Created on 01 Feb
Douglas Mumme
1
It would be really helpful to have the ability to disable client-side sorting of filter values when those values are set using the SetColumnFilterOptions action. In our case, we have a text column that requires specific sorting logic. We already handle this sorting correctly in SQL, and we need the filter values in the Data Grid UI to respect that same order. However, the grid applies client-side sorting to the filter values, which overrides the SQL-defined order. We were able to work around this by disabling sorting on the valueFilter instance of the column using the following JavaScript: OutSystems.GridAPI.GridManager.GetGridById($parameters.GridId).features.filter._filter.getColumnFilter('Product').valueFilter.sortValues = false; While this works, it’s not ideal: It’s difficult to discover unless you’re already familiar with the Data Grid API. It relies on internal/private APIs, which makes it fragile and not future-proof. It would be great if SetColumnFilterOptions had an input such as DisableSorting (or something similar) that when set to true, it essentially does the same as the JavaScript above, allowing developers to easily preserve server-defined sorting
123
Views
2
Comments
New
Components
Add column showing error location
Created on 14 Oct 2010
Rebecca Hall
38
Add column on TrueChange tab to show the location (web page, action) of the error that is being shown.
1351
Views
11
Comments
On our Radar
Service Studio
Add enums to Swagger file (REST APIs)
Created on 12 Feb 2024
Ruben Bernardo
8
When designing a REST API, it would become beneficial for the generated swagger file to include an 'enum' that defines possible values for parameters representing static entity identifiers. Consider the following scenario (see attachment) as an example: Within the REST API method, there exists an input parameter of the Entity1 identifier type. However, the generated swagger file merely denotes this parameter as a string without providing further elucidation. By incorporating an 'enum' into the swagger, additional clarity can be imparted regarding the acceptable values for this parameter. In this instance, the enum would specify: [a, b, c].
191
Views
0
Comments
New
Data & Integrations
Option to Check/Uncheck all dependencies in lifetime deploy
Created on 25 Sep 2025
Gonçalo Almeida
3
When deploying from one environment to another, sometimes there are applications that have dependencies that Lifetime detects and tries to recomplie and redeploy. This is shown in the example below: In this case I have only 1 dependency, but sometimes I have more than 50 and it gets very cumbersome to have to uncheck all (as sometimes I don't want the apps to be recompiled because the change doesn't really affect them and impacts deploy times). So I'm asking for a simple "check all" and "uncheck all" boxes right above the dependency counter. Thank you.
121
Views
0
Comments
New
Lifetime
Set a yearly schedule to Timers, and not to run timer automatically when it is set to active
Created on 02 Oct 2025
Jun Mun Chan
3
1. Have a 'Yearly' selection Currently, we can select 'Daily, Weekly, Monthly' when we are configuring when timers are suppose to run. It will be a nice to have, if a 'Yearly' selection is available as well. There are some jobs which are only required to run once a year. Currently, we can only build a check, in the logic of the timer, to check whether whether it is a new year before continuing the logic. 2. Have option not to automatically run timer, when it is set from 'Inactive' to 'Active ' We have encountered a situation before, when we need to set the timer to Inactive for debug purposes. As the application is already live in PROD, naturally the status of the timer is Active. Then we found there was a bug, as such, we set the timer to Inactive in PROD, while we are still trying to fix the bug. After fixing and when app was deploy to PROD, we have to switch the timer back to Active. However, once we switch, the timer automatically runs again, even thou it is not the correct time to do so. So our end users panicked, as they know the auto emails, reminders etc, shouldn't be set out during that time of the day. End-users being end-users, they might not understand that we are just trying to fix a bug and then re-activate the timer
87
Views
0
Comments
New
Backend
1311 to 1320 of 10911 records
previous
...
131
132
...
next
Top Idea Creators
High Five to the top 5 idea creators in the last 30 days
dex2dot0
2 ideas
2
Jeremiah Cruz
2 ideas
3
Abed Al Banna
1 ideas
4
Alessandro Olavo Gama
1 ideas
5
Franciel Oliveira
1 ideas
Top Brainstormers
High Five to the top 5 brainstormers in the last 30 days
Dorine Boudry
6 comments
2
Daniël Kuhlmann
2 comments
3
dex2dot0
2 comments
4
Abed Al Banna
1 comments
5
Christopher Bautista
1 comments
Code of Conduct
The guidelines we live by that make
this Community amazing!
Code of Conduct
Stay Up-To-Date
Keep on top of what's happening in the Developer Community.
Forum, Forge, Training, Documentation, and more!
Developer Newsletter
Loading...