[Forums] How to get uploaded excel Columns list in outsystems
[Forums] How to get uploaded excel Columns list in outsystems
How to get uploaded excel Columns list in outsystems?means suppose i am trying to upload one excel and i need the Columns Name in list value from uploaded excel file.
[Forums] how to compare two integers
Yes, please give more detail. What happening? Do you can show the if in new column?
[Forums] Get the destination of a human activity (via API)
Hi,
I recently started using OutSystems, and one of the things I like it the processes. I would like to make my own task overview, this way I could also send a daily overview of the open tasks.
However, I can't seem to find how I can get the destination link from the activity. I would prefer to get it from the activity so that I don't have to keep (and maintain) it double.
I looked at the System, BPT, EPA_Taskbox and EPA_TaskboxExtension. I was thinking of using the HTML, but it is deprecated and I can't get it to work.
Can anybody help me with this? Thanks in advance!
[Forums] How to get uploaded excel Columns list in outsystems
wrote:
i already published at my Env.but unable to add
[Forums] Bulk checkbox for list records
Hello,
Sorry, not yet. I'll try to do it today, but no promisses.
If you are on a schedule, you may need to look for a workaround.
Cheers.
[Forums] Use C++ lib via Cordova (JNI)
We have found the answer. The problem was the namespace in the C++ did not map exactly.
The solution was adding Java_ before the function.
#include <jni.h> #include <string> extern "C" JNIEXPORT jstring JNICALL Java_nl_xservices_plugins_HelloCJni_hello( JNIEnv *env, jobject /* this */, jstring j_input) { std::string hello = "Hello from C++"; return env->NewStringUTF(hello.c_str()); }
If someone has to deal with this kind off problems use de adb logcat. When we used this we could pinpoint the problem.
The two links we used to install adb and use the logcat function
https://www.xda-developers.com/install-adb-windows-macos-linux/
https://developer.android.com/studio/command-line/logcat
Maybee this is some help for others
With kind regards Robert and Mark.
[Forums] Convert to/from NULL value in Database
Hi Box,
In OutSystems, the value will never be NULL, even if when you save the data in the external entity, it saves NULL.
Inn OutSystems, an integer that in DB is NULL will be read as 0, a NULL string as an empty string "", a NULL boolean as False, and so on.
Cheers.
EDIT. By the way, I don't think the extension is able to make a conversion FROM text to DECIMAL, implicitly (never tried). So, It seems to me that the problem of not saving -99999999 can be the fact that you are defining a default value as text when the original data type is decimal...
[Forums] HighCharts (Pie) defining color.
Hi William,
Were you able to make this work for Pie Chart? I was able to make it work for the column chart but when I applied it for a pie chart, app is still using the default colors.
Please advise.
Regards,
Rom
[Forums] How can I CRUD the data?
Hi!
How can I CRUD the data?
I sought the logic all over this component, but I couldn't find it.
It seems to have only sign-in/log-in logic.
[Forums] Firebase Oreo Plugin Unofficial Update and other bug fixes
Here the file
[Forums] REST Consumed - Data Corrupted
hi mARCO,
It is a question, how come the respond is different between the API gateway and when i debug in Outsystems?
regards
[Forums] Environment Health Problems(Deployment service is down in front-end SERVER)
I am facing Environment Health Problems(Deployment service is down in front-end SERVER.) issue in outsystems. I want to generate VPN and connect MYSQL database with outsystems. I also want to know how to find IP of outsystems personal environment Please Help.
[Forums] Is this component resize the image on client or server side?
Hi Renato, Harlin, Thanks a lot for your confirmation :)
[Forums] Fixed image
wrote:
Hi Gowtham,
Maybe you added some class to the image or container. Inspect the element and check that, and send us a feedback
Regards
Hi Paulo Cação,
First of all thanks for your reply.
I haven't added any class
[Forums] custom logout issue : when user presses browser back button, previous screen displays
wrote:
Hi Anand,
You can block the browser back button, or clear the browser cache when user does logout.
Block back button:
$().ready(function() {
if(document.referrer != 'http://localhost:8181/'){
history.pushState(null, null, 'login');
window.addEventListener('popstate', function () {
history.pushState(null, null, 'login');
});
}
});
Or clear browser cache:
<META Http-Equiv="Cache-Control" Content="no-cache">
<META Http-Equiv="Pragma" Content="no-cache">
<META Http-Equiv="Expires" Content="0">
Regards,
@Marco , Thanks for the quick response,
Can you please elaborate how/where to use that block back button ?
or clear cache script ?
onclick event ( of logout button) ?
Also about this
document.referrer != 'http://localhost:8181/'
normally using web app in browser the url looks like https://<DomainName>.outsystemscloud.com.
so is there any need to make any change in your code or shall i use it as same
Also in this
history.pushState(null, null, 'login');
does 'login' here represent name of Login screen element ?
Thanks lots
[Forums] REST Consumed - Data Corrupted
Hi Box,
Is this an observation or a question to the community?
[Forums] convert list text to text
Hi Gurpreet,
Actually you don't need ListAppend or LocalVariable for this implementation. You can directly pass your tableRecords or ListRecords to String_Join and get list as text. See screenshot below.
Hope this helps
Atul
[Forums] Firebase Oreo Plugin Unofficial Update and other bug fixes
New updates v1.3 by me
Now you can take advantage of Channels for android 8.0
There is CreateChannel,ListChannel and DeleteChannel actions
I still maintain and backport for OS10,worked on it for OS11
EDIT:No check for android 8.0 and showing channel description is not working yet and sorry if any bugs you may find
This is still a test in progress
EDIT:Mistake were discovered by me when backporting,file removed sorry :(
[Forums] Any affect from Google+ shut down
Google Login is older than Google+ and will live on after its end. The issue that they used as an excuse to close it may lead to a restructuring of Google Login, but I assume it will be transparent for the end user and I hope that for developers too.