[Forums] Screen - Waiting for a response
> How are you doing the web service pooling? In a looping Server side?It's indeed looping on the server side. Which is done in an action that included a 5 second wait.Thanks for your thoughts.
View Article[Forums] Passing Binary Data to REST
Thank you, this helped. Woohoo. Thank you @Eduardo
View Article[Forums] Back Button Problem in Multi Step Forms
Hi João,thank you for your quick great support. I tried it right awayIt works almost perfectly. I have a save button on the second page, where I write data to the database. If I press this save-button...
View Article[Forums] Screen - Waiting for a response
Hi Paul,I am wondering why you need to poll anyways?"normal" flow of these kind of things:0. user starts the payment1. (popup) starts2. outsystems in, for example in preparation, redirects to the...
View Article[Forums] Universal search on Tables
Hi Saurav,You can use a SQL tool with Input Parameters with Expand Inline set to No Yes. That way you can generate dynamic sql queries. Based on some configuration elsewhere you'd build the SELECT ......
View Article[Forums] Universal search on Tables
Hi Jorge, did you mean Expand Inline set to YES?Otherwise it will not be interpreted as sql but as values...A solution would be to return always the id (as integer) and the name of entity plus some...
View Article[Forums] Back Button Problem in Multi Step Forms
Hi again Tobias,You are welcome. About the behaviour that your are describing is the same that you have by pressing the save button and the previous button of the browser.Yes you can control by the...
View Article[Forums] Advanced Sql: To return all rows when the condition is empty
Actually... SELECT {SomeEntity}.* FROM {SomeEntity} WHERE {SomeEntity}.[SomeAttribute] LIKE '%' + @SomeInputParameter + '%'is what is commonly used... when SomeInputParameter this will become "%%"...
View Article[Forums] Back Button Problem in Multi Step Forms
Just to add, the Save button, if used with a submit, is reloading the page. When you press back, it go to it again because of it.If you use ajax submit in the save, a back afterwards will immediately...
View Article[Forums] Image Cache Clear
Eduardo Jauch wrote:Doesn't matter the name of the file when you upload it. What matters is the name you give in the property File Name. Because this will be the name that will be inserted in the tag...
View Article[Forums] How to ignore time from datetimefield while comparing with date field?
Hi,I have an attribute called UpdatedOn and it's data type is DateTime but while comparing I want to compare with today's date and fetch me today's records but it's not working. How do I achieve this?...
View Article[Forums] Back Button Problem in Multi Step Forms
Hi Eduardo , hi João thank you very much for your important hints.I already use the wizard widget for a web application (see the picture).What is easier with the Wizard ?, I have not found detailed...
View Article[Forums] Back Button Problem in Multi Step Forms
Tobias,With the wizard you don't have to move from page to page (you stay in the same page when moving from one wizard step to the other).I found an example/demo of how to use the Wizard, on another...
View Article[Forums] Pie chart onClick to filter a table
hi,i have a pie chart to display the amount of times each category has been added to a table records, I would like to make the chart filter the table records by clicking on a category in the pie chart...
View Article[Forums] Back Button Problem in Multi Step Forms
Thanks João and Eduardo. It is working fine now and thanks for the Explanation undimportant hints.
View Article[Forums] How to ignore time from datetimefield while comparing with date field?
Hi Suraj,You can convert your date time to date and then compare to current dateDateTimeToDate(EntityTest.DateTime) = CurrDate()Or get datetime that are bigger than today at 00:00:00 and previous to...
View Article