[Ideas] PostgreSQL Integration
[Forums] Updating a data table with excel in run-time
Hi Guys
I have an application that has tables updated (excel files) by users at runtime.
I have built the logic to validate the upload and this works but my problem is that I have aggregates that fail after the load is complete.
It's as if the applied filters have been disabled - but as soon as I check the test inputs and refresh them in the aggregates work again.
[Forums] Updating a data table with excel in run-time
Hi Craig,
Can you please elaborate more and illustrate with pics of your code?
Cheers,
Tiago.
[Forums] Final Exercise - Help
How would I make it so that the table is available to select as a widget in the expression editor between different screens? The solution I have used as a reference for the final assignment has done it this way but I cannot figure out how.
[Forums] Updating a data table with excel in run-time
wrote:
Hi Craig,
Can you please elaborate more and illustrate with pics of your code?
Cheers,
Tiago.
Hi there,
here's a link to my original post about the Upload (for context)
https://www.outsystems.com/forums/discussion/37216/uploading-excel-report-in-the-frontend/
so my error is subsequent to this process... Now that I have the upload working --> the tables all show the relevant updates, but the calculations/aggregates that are derived from those tables fails to execute after an upload
[Forums] How to get rid of the "Access to the path 'c:\Example.xlsx' is denied."
Hi Pradeep,
GetOwnerURLPath() never returns a Windows path, so it's impossible that GetOwnerURLPath() gives you the "c:\Bookings_Interface". I'm not sure what you did, but not what you claim you did.
[Forums] Final Exercise - Help
Hi Chris,
The solution definitely did not do that. Screens are self-contained, they don't "exist" except when you start them in your browser. If you navigate to another screen (in the same tab), the originating Screen is no longer available, it's destroyed and removed from the web server.
[Forums] Data in Javascript Object is lost on ajax refresh
Could you explain "why" do you need to ajax refresh the tab?
By default, in the TAB widget, all the content is already there. There is no need to refresh, as the switch is carried away automatically client side through JavaScript.
[Forums] Data in Javascript Object is lost on ajax refresh
I am basically changing the views which are under different tabs. One of the tab is Chat.
Thanks,
Kunal
[Forums] Data in Javascript Object is lost on ajax refresh
wrote:
I am basically changing the views which are under different tabs. One of the tab is Chat.
Thanks,
Kunal
So, don't. :)
If you need to change tab from server, run a JavaScript to click in the right tab, instead of refreshing it.
Cheers
[Forums] How to get rid of the "Access to the path 'c:\Example.xlsx' is denied."
wrote:
Hi Pradeep,
GetOwnerURLPath() never returns a Windows path, so it's impossible that GetOwnerURLPath() gives you the "c:\Bookings_Interface". I'm not sure what you did, but not what you claim you did.
Let me send you the OML which I'm using.
[Forums] How to Get the Image identifier in Jquery
Amol, Thank you this was helpful.
[Forums] Final Exercise - Help
Hi Chris,
There is a way to make web blocks and share them among the screens.
To achieve that, you need to learn about web blocks.
[Forums] .net Web application
i am thinking of using soap web service and consume when the outsystem application opens. i shall try this and inform you if it works.
thanks a ton for all the responses.
happy weekend
[Forums] .net Web application
Hi Ryoto,
If it's technically not a problem to use REST, don't use SOAP. Use REST whenever you can. SOAP is much slower dus to added overhead, and is the way of the past.
[Forums] ProgressBar with values over 100%
We use it to show completion of sales objectives.
But when the objective is surpassed (>100%) the value goes out.
[Forums] Movies app movie database not working?
Hi Vikhyat,
I'm using this oap file. Try also to increase the Server Request Timeout from this module in the interface tab.
[Forums] Reason for having all screens in one eSpace in a mobile application
Hi,
This is purely for technical reasons (I'm not from the Engineering team so I won't bother trying to explain).
The best practice (especially if you have a large mobile app) is using public blocks:
- Split your UI over different modules (eg functional/business area), using public blocks.
- Your main module includes all the screens, but these become "shells" including the referenced blocks and little else.
[Forums] Reason for having all screens in one eSpace in a mobile application
wrote:
Hi,
In several posts people stated that in a mobile application all screens should be in one eSpace. No one however mentioned the reason for this.
From a maintenance perspective I'd like to split my UI in several eSpaces (like I do in a web application). I've created a sample and it worked. I have a main screen which is the module from the orchestration layer, which calls a screen from another module as an "External Site". As long as the user providers of both screens are the same no problem arises from an authorization perspective.
The application also works fine, when deployed as an apk on an Android device.
Does anyone know the problems which may arise from splitting a mobile application in several UI eSpaces?
Your help/thoughts are apreciated,
Matthieu de Graaf
In a project, before the screens are split, but there is performance penalty, so all are put in one module. I think this is performance issue.
regards
[Forums] Reason for having all screens in one eSpace in a mobile application
Hi Paulo,
Thanks for your reply. I had already tested the solution you proposed and that works fine too. I'm still curious though, what the rationale is for this best practice.
Regards,
Matthieu