In poor connection circumstances it's desperate to see never ending process. So I want to cancel it and continue instead.....
[Ideas] P11 Bring back "Cancel" for 1-Click Publish
[Ideas] Add NumberOfMonths property to RichWidgets\Input_Calendar
[Ideas] What is the possible way to achieve two way data bing in Outsystem.
Like angular can we achieve two way data binding ( for example: if we are feeling form the entered data is going to be display simultaneously )
[Ideas] Email Input parameter as Binary
I think it would be a great addition if Email can accept Binary Data as input parameter. Currently it only support basic types.
Because normally emails are used to send attachment which would be in Binary Data.
Of course you can do some aggregate in the Email preparation but I have faced situation where this is not possible. In complex architecture like different zoning deployment and to avoid circular dependencies.
So I ended up get data from aggregate then converting it to JSON then as text input parameter to Email then JSON deserialize again using structure (no entity) to prevent cyclic dependency.
So I hope Email would just accept binary data as it is so it would be a lot simpler just to send attachment task.
[Ideas] [ServiceCenter] Temporarily disable eSpace
It would be nice to have a mechanism to temporarily prevent access to an application in ServiceCenter, that would redirect all the users to a maintenance page.
[Ideas] Add Bookmarks in Service Studio like Visual Studio
Would be nice if the Service Studio having a system of Bookmarks like Visual Studio (for example). Where we can create bookmarks on our actions/screens by eSpace and navigate between bookmarks by using the Next Bookmark and Previous Bookmark buttons.
Also will be nice if Service Studio have a list of all Bookmarks:
I think that can be very helpfull in our development :)
[Ideas] List all reminders
[Ideas] Separete apps on Service Studio by teams created by Life time
The Ideia here is when we set x applications that were made by a specific team on Life Time I would like to see on my Service Studio by default my team apps and be able to expand all apps from my company.
[Ideas] Attach note(s) to a eSpace Version in Service Center
[Ideas] Authentication with the Portuguese Citizen Card (AMA)
Hi Team,
There are more and more applications with authentication through the Portuguese citizen's card (authentication.gov / Cartão de cidadão) and it was interesting to develop a component for authentication with the Portuguese Citizen Card (through AMA).
Has anyone developed this for Outsystems yet?
[Ideas] Merge all the BPT APIs
There should be just one API for BPT, or at least 2 (BPT API and EPA API).
All the BPT actions from System should be moved to the BPT API.
For instance, we have the 'ProcessTerminate' action in System eSpace and the 'Process_Delete' action in the BPT API extension, and one complements the other (you can't delete a process with the API if its not terminated).
New developers only know half of the available actions, because they are all scattered around the modules.
It would be simplier if we only had one place to get all the APIs for BPT.
[Ideas] Developer Online Class
In the online developer class forum. A search function would be nice. I don't like question that are asked before, so I go searching and search till I think:'Well oké I don't think I can find it.' That gives me a bad and unnacesary feeling.
I did not find this Idear either?
If there already is such an idear, please ignore and explain to me were or what is the sollution.
Greetz Hans
[Ideas] REST expose: allow PATCH and indicate which fields have been sent
It is possible to consume a REST API using the PATCH method, but it isn't possible to expose a REST API with it. PATCH is meant for selectively updating data (instead of all at once, like PUT). I would like the Platform to support PATCH for an exposed REST API as well.
However, PATCH is useless without being able to detect which fields (Attributes) have been sent by the calling party. Currently, if a consuming party doesn't send all the fields, the Platform will set them to the default value. This works for most cases, but not for a PATCH. Therefore, when supporting PATCH, there must be some way (via a runtime property) for the Platform to indicate which fields have been sent, and which were not.
[Ideas] Page to see site properties of all eSpaces
There should be a page in service center to show the site properties of all eSpaces. This way it would be easier to change properties of multiple eSpaces and also to find to which eSpace a property belonged.
[Ideas] ListAppendList builtin feature (Append a list to a list)
I would like to see an built-in implementation of appending a list to a list.
Too many times I have to create a for-each loop to append all records from 1 list to another, while a simple action should be better.
Makes the code cleaner as well.
[Ideas] Service Studio - Improve cell options for aggregate tables
In the data tables of aggregates there's no way to select a value, or if the value is too long there's no way to expand the value and see all of it .
[Ideas] Progressive Web Apps
Moving forward would there be any plans to support rollout of web applications in the form of Progressive Web Apps
https://developers.google.com/web/progressive-web-apps/
https://developers.google.com/web/showcase/
This allows no installation, fast web applications, service worker, greater productivity and SEO.
[Ideas] Remove Disable elements
Should be possible to developer to delete all disable elments. This option could be near "Remove Unused References" with the label "Remove Disable elements" or something similar.
[Ideas] Advances search features on forum (like search only posts with solution)
It would be nice if I could have advances search options on the forum, to reduce the list of responses on a forum search.
For example:
- Only post with a reply marked as solution
- date period: ast week, Last Month, Last Year
- Application type: reactive, mobile, web, plugin, extension
[Forums] JQuery to format input value once on page load
Dears,
I have a Jquery to convert decimal into currency.
1. Load decimal from database
2. Convert into currency format (using document.ready event)
When user clicks into field, Jquery converts back into decimal so value can be saved in the variable (data type=decimal), on blur it converts back into currency. (This all works fine).
My problem is that "document.ready" seems to execute whenever user types in the field. It should only trigger once as it should not convert to curreny format during typing (only first time when data is retrieved).
I tried in the "onRender" event of the block and also "OnAfterFetch" of the DB call.
I have a working solution in codepen https://codepen.io/kescou/pen/qBEYxYZ
How can I automatically trigger the initial conversion when data is retrieved from db?
Any help is appreciated!