Quantcast
Channel: OutSystems Community
Viewing all 1476385 articles
Browse latest View live

[Forums] split Screen how to use

$
0
0

Hi,

I've attached a sample oml with a working example of the split screen pattern.

Keep in mind that you can only actually see the split screen in a tablet. In mobile, as it says in the documentation, it will adapt to the phone layout by showing only one panel at each time.

I'm using Outsystems 11 and therefore I'm using Outsystems UI instead of Silk UI, but it's pretty much the same.

Hope this helps. Let me know if you have any questions.


Best regards,

André


[Forums] How to create Oracle database connection

$
0
0

How do i create connection for Oracle database?

I am getting TNS service error. Connection String test failed: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor


[Forums] split Screen how to use

[Forums] Form Behavior on Google Chrome and Mozilla Firefox

$
0
0

Hi,

I think it's a bug on firefox that preserves the form values. Possible related with autocomplete.

You could try to use the fields outside of the wiget form or just use local records instead of the form widget and check if it has the same behaviour.


Regards,

Sérgio 

[Forums] Outsystems not resolving my problem.

$
0
0

Hi Ali, if you did open a ticket on outsystems.com/support you should have got response from them.

What was stated in that email?

Regards,

Daniel

[Forums] Outsystems not resolving my problem.

$
0
0

Hello Hassan,

First thing, did you check if your environment is healthy?
Also, did you try to create a simple sample application and generate the package, just to eliminate the possibility of being a problem with the application?
Did you open a ticket in the support page?

Cheers.

[Forums] cant install twilio APi connector

$
0
0

Hello Mlondi

Are you trying to install the app in O11 or O10. Because there is no need to download it.
Just open the Service Studio in your environment, go to the "black" tab, find the app, go to the Versions tab and install from the correct version (if you have a new personal environment, it is in O11, otherwise it is in O10, most likely).
The correct version will have the button Install enabled, instead of Download.

Hope this helps.
Cheers.

[Forge] FullScreenWaitSpinner

$
0
0
Cordova plugin for showing a native spinner based on Paldom/SpinnerDialog. Project page: https://github.com/greybax/cordova-plugin-native-spinner

[Forums] SpinnerDialog is not defined

$
0
0

Thanks Eduardo for catching this thread.

Hi Daianne, sorry for the late reply.

Are you testing the Sample on your smartphone by generating a mobile app? This component won't work via Outsystems Now. You will need to generate a native app and run it on your phone.

You can get here the android version and test it on your mobile phone, i just generated from my personal environment. Hope it helps you!

Best regards.


[Forums] Patterns

$
0
0

Hello Jagadish

What's the source of this table?

Cheers.

[Forums] Form Behavior on Google Chrome and Mozilla Firefox

$
0
0

Sérgio Neto wrote:

Hi,

I think it's a bug on firefox that preserves the form values. Possible related with autocomplete.

You could try to use the fields outside of the wiget form or just use local records instead of the form widget and check if it has the same behaviour.


Regards,

Sérgio 

Hi Sergio,

The OutSystems Form is not really a form. It is just a DIV with some JavaScript bound.
It is enough to have a single input in a page, o the platform, when building the page, to add a Form around the page. So, all pages with at least one input have a form on it, and the inputs are inside it. 

Other than the facilitation to group inputs (the Record, the validation, CSS), the OutSystems form does not really have much impact in the behaviour of the inputs.

Cheers.

[Forums] Form Behavior on Google Chrome and Mozilla Firefox

$
0
0

Hello Michael,

This is a know behaviour in Firefox. It just try to keep data on F5 (Ctrl+F5 should work), and he gets this information from cache, instead of going to the server (than the inconsistences). 

A search in google have a possible solution: to add the attribute autocomplete="off" to the inputs (you can use the Extended Properties section for that).
 
Another possible solution is to disable the cache in the page (you have to add some headers to the page), this will make the browser fetch a fresh page from server on a F5 press.

Be careful with possible "side effects"...

Cheers.

[Forums] How to create Oracle database connection

$
0
0

Hello Prahlad,

This does not seems to be an OutSystems problem.
So, you have a problem with your Oracle database or with the parameters you are using (like the service name is wrong, or the port, etc).

But... 

Google is magical, I found many entries about this error.
You can take a look here and here, for example.

Hope this can help you.

Cheers.

[Forums] How to drop a primary key?

$
0
0

Hello Michael,

As far as I know, it is not possible to drop or change a primary key.
In the past I tried the approach described here, by J., and also a few different approaches, but all the time the compiler complained about inconsistence between the primary key definition and the table definition.

So, the easiest way, if you do not have data to worry about, is just copy/paste the entity, change the Primary Key data type, delete the old entity, rename the new entity to have the same name as the old one (optional) and publish the module. A new table in the database will be created with the new structure.

If you have data, just do the same, without deleting the old entity, and do code to copy data from one entity to the other, and than later on replace the old entity by the new one.

Cheers.

[Forums] How to fetch the deeplink

$
0
0

Hi Filipe,

Make sure that you are using the application generated from your staging environment, and that app identifier scheme name in lowercase.

Logic for the deeplink in one signal is built here:

So you can even debug, however you can check the payload of your notification message and make sure that Launch URL is being correctly defined.


Hope it helps you.

Best regards,

Daniel Martins


[Forums] Mobile App: How do I simply display current user's name or username?

$
0
0

Dear All,


I am using this GetUserName method, and it is returning value. But I need logged in User Id e.g.


My User Id is "User123", Display Name "Daniel"....


I need "User123", where as user name function return me "Daniel", There is a function called GetUserId() but it returns internal key value like 23.


Can you please advise for it. 

[Forums] Version 2.2.1 is giving me an incompatible error in OutSystems Now

$
0
0

Can't compile a lot of old project because of this new update. any ideas what to do?

[Forums] Animated Label in a Tab

$
0
0

I have investigated further, and I think I know the problem. The Tabs UI has the following code in the onkeypress changing the arrow keys and also the space key. Q. How do I change this behavior. I'm kinda new to javascript - Any help gratefully received

var onTabsKeypress = function(e)
    {
        var nextTabItem = document.activeElement; // set active as default
        var tabsHeaderItems = tabs.querySelectorAll('.tabs-header-item');
        var items = tabsHeaderItems.length;
        if(tabs.classList.contains('tabs-horizontal')) {
            // Arrow Right
            if(e.keyCode == "39") {
                nextTabItem = document.activeElement.nextElementSibling;
                if(!nextTabItem) {
                    nextTabItem = tabsHeaderItems[0];
                    nextTabItem.focus();
                }
                else {
                    nextTabItem.focus();
                }
            }
            // Arrow Left
            if(e.keyCode == "37") {
                nextTabItem = document.activeElement.previousElementSibling;
                if(!nextTabItem) {
                    nextTabItem = tabsHeaderItems[items - 1];
                    nextTabItem.focus();
                }
                else {
                    nextTabItem.focus();
                }
            }
        }
        if(tabs.classList.contains('tabs-vertical')) {
            // Arrow Down - Act as Right
            if(e.keyCode == "40") {
                nextTabItem = document.activeElement.nextElementSibling;
                if(!nextTabItem) {
                    nextTabItem = tabsHeaderItems[0];
                    nextTabItem.focus();
                }
                else {
                    nextTabItem.focus();
                }
                e.preventDefault();
            }
            // Arrow Up - Act as Left
            if(e.keyCode == "38") {
                nextTabItem = document.activeElement.previousElementSibling;
                if(!nextTabItem) {
                    nextTabItem = tabsHeaderItems[items - 1];
                    nextTabItem.focus();
                }
                else {
                    nextTabItem.focus();
                }
                e.preventDefault();
            }
        }
        if(e.keyCode == "32") {
            nextTabItem.click();
            e.preventDefault();
        }
    };

[Forums] Insert image

$
0
0

Hi Claudio, if the table is existing, just placing a bookmark and using the MSWord_ReplaceBookmarkWithImage will work.  However, I presume you mean inserting an image in a table that you generate.  Currently the component only supports inserting text into table cells, not images.  But that is a great idea, thanks!

[Forums] problems with pahoClient

$
0
0

Pedro Garcia wrote:

Barduino wrote:

Pedro, Kamath,

I will gladly add you to the dev team, just make the request!

Cheers

I am glad to join! I am actually trying to do the same, but in mobile...but this time having more problems, that I did not solve yet... 


The Paho mqtt client should be the same. I can't remember if I made any changes between them. 

The mobile client t is much easier to implement because of the events. However now with P11 we have events for web also. 

Someone reported the on destroy was not working properly but I couldn't convince them to join the team.

Any way looking forward for this and appreciate your interest. I will add you to the mobile version also,just make the request. 

Cheers



Viewing all 1476385 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>