hi there,
I tried the ScrollToElement pattern and use price id for the widgetid:
Unfortunately, when load the page, it does not point exactly to the price widget:
regards,
Batik
hi there,
I tried the ScrollToElement pattern and use price id for the widgetid:
Unfortunately, when load the page, it does not point exactly to the price widget:
regards,
Batik
hi there,
Where is usually StackedIcon used in the web app?
regards,
Batik
hi Rebecca,
You are correct, when i can add and then list it, only 50 is shown, it seems that the Line Count logic is wrong. I trick it by giving large value, say it 5000 and all be all right. Hopefully the next version will be fixed by team.
regards,
Batik
hi there,
i am wondering what is the difference between:
and the Outsystems widgets:
regards,
Batik
Good Day,
I have uploaded a pdf into a DB with the columns FileName, FileContent and FileType, FileName and FileType have the data type "Text" while FileContent has the data type "binary data".
I used a button with the method submit and used the "Create record" action to put the file uploaded using the upload widget.
I then display the a table in the same webpage, where if i click on the table's row, it should download the corresponding file content, as shown below.
This is what it looks like in my downloads wdiget:
However when I click on the table's row which launches the download widget, I get an exception, "An exception occurred in the client script. Error: The connection to the server was reset".
Can someone point out where I went wrong?
Thank you.
Regards,
Jerome Lieow
Hi I'm using stacked cards for my mobile silk UI app. I wanted to ask can I zoom in my stacked cards to get a better picture using my figures the way we can zoom in different websites ? If yes how ?
Cheers
Capstone Project wrote:
Ramakrushna Rao Seera wrote:
Hi Capstone..
In background out systems uses high charts, you can define your own colors to your charts,
Please check below example
http://jsfiddle.net/c0wmrwja/30/
thanks,
Ramakrushna Rao
Hi.. Thanks for this. Where can I embed the codes?
Hi.. you can write code in Advanced Format property of a chart. Look at below snippet for reference ..
Thanks,
Ram..
Hi Batik,
I don't know the IFrame component but if it is a common HTML iframe there are restrictions (it is not an OutSystems restriction).
Some sites are blocking iframes when the domain is not the same between the page and the iframe page, in this case, Google sends an "X-Frame-Options: SAMEORIGIN" response header preventing the browser from displaying iFrames that are not hosted on the same domain as the page.
Regards,
António Pereira
Batik Web wrote:
Hi Abilio,
If i want to use personal environment module A to personal module B, i succeed by send it to this forum (attachment) and then download it back to be published to the consumer as independent module. I never try across personal and enterprise.
Another way is to upload to forge (but it is for public library.. so will make it insecure).
Regards,
Batik
Be aware that when you attach a module to a post in the forum, you are giving the right to anyone to use it the way they like.
Hello Herome,
The action that ends with a Download must be called also with method set to "submit".
Check if it is defined as "submit", or if you are using "ajax submit".
If it is already set as "submit", check if you are having any error in the Service Center logs, that can give you a lead on what is happening. You can also put a break point into the action start and check if there is something that is causing a problem.
Cheers.
EDIT:
Looking better to your Download, I think the error is probably the "source".
If the GetEntity1s aggregate is in the preparation and is the source of the table, the "current" will probably not be pointing to the correct record (beside being bad practice use preparation generated content.
Instead, fetch the record that contains the file, again, using the GetEntity1 entity action, passing as argument the id that will be set in your TableRecords.List.Current.Entity1.Id.
Every time you click in a line of a Table/List Records, its list current is set to that record.
Hello Batik,
ardoJSON exists for a long time, while the JSON Serialize and JSON Seserialize were introduced first in version 10.
I think (not sure), that ardoJSON has more actions to use, but for most things, the new widgets provided by the platform are enough (serialize / deserialize) and should be used preferrably.
Cheers.
Hi Cody,
No, I'm afraid there is no way to make the Select2 faster. Not an easy one, at least.
The problem is that the Select2 works completely Client side. This means that the list must be complete to it to work.
So, you have at least 2 problems here.
1. Your list will take time to load, on preparation.
2. Every time the javascript will render the list visible when the user types, it will go through a lot of items.
An alternative is to use the Input_autocomplete with a normal input. You can than define that the list will be loaded only when the user types a certain number of times.
Disavantages: Uses server side logic to load the the list every time the input changes, the user needs to click in an element of the list to select an item, because typing it, by default, it is not enough, even if this can be workaraunded with some logic.
Maybe rethink your UI can solve this problem.
Cheers,
Eduardo Jauch
Here is quick documentation for ardoJSON which will be useful.
Once you read it you can easily differentiate between the two.
Also I second for the Ed explanation. The new widgets are more than enough.
https://www.outsystems.com/forums/discussion/10218/documentation/
Hi,
Using your demo page I cannot see any ViewState size. Is the component still working?
Hi,
I am consuming a bunch of OAuth REST endpoints in a mobile app. For each REST API request, I am hitting the access token endpoint. I am sure there is a better way considering there aren't any session variables in mobile app. Please suggest.
Regards,
Prasanna CS
I've had a look at a StackedCards mobile demo I put together... and I don't think there is a pinch/zoom capability built into that widget.