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

[Forums] OutSystems & Jenkins


[Forums] Cross Database Joins in Advanced Queries

$
0
0

Karen McCarthy wrote:

Thanks so much for your recommendation.  We did jump from 9.0.1.25 to the latest version of 10, but we'll let them know.  I was able to work around this issue by changing the advanced query in the preparation to execute a stored procedure.  The stored procedure successfully accomplished the cross-database join and returned the results to the output structure of the advanced query.  

Thanks again for helping us with this issue.

Hi Karen,

Have you upgraded directly from 9.0.1.25? Meaning you didn't upgrade to latest 9.0.1 first?

Also, if you check breaking changes you'll find there were some related with Database Connections. Without knowing the details, it's hard to say, but it might be related.


[Forums] Action RecordListToExcel force column type as text in excel

$
0
0

Hello Severiano,

The RecordListToExcel does not give you the possibility to change the excel column type. Everything is "automatic" (at least when I see in google docs).

But probably, with one of the components in the forge that enable you to create more complex excel files, you will be able to do this.

If this is important, you should try them.

Cheers,
Eduardo Jauch

[Forums] Navigating mobile screens programmatically

$
0
0

Hi Eduardo,

Thanks for your reply!

When my application comes to the foreground, I check to see if documents have been posted in my app's Document folder. These need the user's attention asap, through a screen. So as soon as the resume event triggers, I would like to navigate to a specific screen to present any documents in the Documents/Inbox folder (used by iOS to post intra-app documents).

[Forums] Navigating mobile screens programmatically

$
0
0

Hum...

I never used it (I'll do some tests), but maybe using the InApp notification component (from forge) you will be able to achieve what you want.

Cheers,
Eduardo Jauch

[Forums] Use Javascript from GitHub specified in Extensibility Configurations?

$
0
0

I would like to use Javascript packages sourced from GitHub in a way similar to Cordova Plugins, i.e. through a definition with a GitHub URL in the module's Extensibility Configurations. Is this possible? If so, how? Thanks!

[Forums] RangeSliderInterval MaxValue expression causes app to stop

$
0
0

Rita Dias wrote:

Hey Leen,

By expression you mean you are using a variable, yes? If that is the case I wasn't able to replicate on my end. Can you please try to create a brand new app and copy/paste your example there to see if it still happens?

Hi Rita,

I mean i am using a variable indeed. I will try your suggestion, but i can't do that before tuesday.

Best regards,

Leen Rietveld.


[Forums] Not able to find the table name.

$
0
0

Hi Rajendra,

there is a table called User_Effective_Role with physical name OSSYS_USER_EFFECTIVE_ROLE.

Yours (OSSYS_USEREFFROLE_T43) must be a reference to it in another espace...


[Forums] RangeSliderInterval MaxValue expression causes app to stop

$
0
0

Dinis Carvalho wrote:

Hi Leen,

Can you please check the range between the Min and Max values that are being generated?

My feeling is that the range is very wide and since you're using pips with a step of 10, the browser is trying to create a big number of those in runtime.

Example: from 0 to 5000 with a step of 10, the browser needs to render 500 pips when loading the screen

We made a small change recently (not yet in production) on the range slider to make it still render properly but reducing the amount of pips if needed.

Hi Dinis,

They are weeknumbers, so the range is not wide, from 1 - 52 or 53 in some years.

Best regards,

Leen Rietveld.


[Forums] Use Javascript from GitHub specified in Extensibility Configurations?

$
0
0

Hum...

From the documentation, only valid Apache Cordova plugins can be used.

A plugin in OutSystems is a module that contains a reference to an Apache Cordova plugin that you can use in your mobile app. For a plugin to be considered a valid one that you can use in your app, your module must wrap a valid Apache Cordova plugin.

Cheers,
Eduardo Jauch

[Forge] SAG-ClusterMapPoints

[Forge] Charts_Demo

$
0
0
This is a simple application to demo and test Charts component and its Highcharts Advanced Format (HighchartsJSON).

[Forums] Action RecordListToExcel force column type as text in excel

$
0
0

Hi Severino,


Have you tried to add an ' (apostrophe ) to the beggining of the cell value? Like: "'" + Value.


"The apostrophe ' is a special character for Excel when it appears as the first character in a cell. It tells Excel to treat the rest of the string as text."


I hope that do the trick.


Best regards,

João Nobre



[Forums] Use username in mobile app

$
0
0

I have an existing database that I would like to integrate into my app.  User Id's have already been assigned.  Is there a way to assign this preexisting Id number to users and use it in the app

[Forums] Action RecordListToExcel force column type as text in excel

$
0
0

João Nobre wrote:

"The apostrophe ' is a special character for Excel when it appears as the first character in a cell. It tells Excel to treat the rest of the string as text."


João Nobre

Hello João.

I tested in a Google Sheets and it won't worked.
It works only when you put the ' direct in the cell, from the google sheets itself (like the 123).

Maybe it works in Excel (I don't have one to test).
But if it works it will require to process all the rows/columns that can cause problems...

Maybe, using a more advanced plugin, would be possible to set the column type.

Cheers,
Eduardo Jauch


[Forums] Use username in mobile app

$
0
0

Hello Andrew,

Unless you don't have any other application in the server, "reassign" User Id's (even if it is possible, and I don't think so), would probably break something... Or at least require direct access to the database.

I see two possibilities here (maybe there are more).

First, replace the User«s Ids in the existing database to match those in the OutSystems Server.

Second, create a "lookup table", where you have the translation between user's ids in the existing database and the users in the OutSystems server.

The first, if possible, would save you from some headache...

Maybe someone have another idea :)

Cheers,
Eduardo Jauch

[Forums] Need Users Application

$
0
0

Eric Okorley wrote:

i am having a problem finding user path to create a password to login 

where do you look? i need step by step with pictures please


thanks I found the path for admin

[Forums] Action RecordListToExcel force column type as text in excel

$
0
0

Hi guys,


yes indeed my first option was to use the apostrophe, but as Eduardo said, this dont change the column/cell content type, it only gives the possibility to use the minus char at the start. 

I needed a better option cause in this case, the excel is to be used by final users to import data, and dont want to force them to use the apostrophe.

I finaly found a way to do it, i had to create a .Net extension using spreedsheetgear component, i created a method to format a list of columns using the NumberFormat property of the class.

In this case i call this function by passing the parameters: ssColumnLetter="C", ssFormatName="@"

that in the excel means type text.

bellow is the code i used to create the extension in integration studio.


public void MssFormatColumn(RLFormatSettingRecordList ssFormatSettings, byte[] ssBinary, out byte[] ssBinaryOut, out string ssErrorMessage) {
ssBinaryOut = new byte[] {};

            try
            {
                ssErrorMessage = "";
                System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("pt-PT");
                SpreadsheetGear.IWorkbookSet workbookSet = SpreadsheetGear.Factory.GetWorkbookSet(culture);

                SpreadsheetGear.IWorkbook workbook = workbookSet.Workbooks.OpenFromMemory(ssBinary);
                SpreadsheetGear.IWorksheet worksheet = workbook.ActiveWorksheet;
                var cells = worksheet.Cells;

                ssFormatSettings.Data.ToList().ForEach(set => {

                    var col = string.Format("{0}:{0}", set.ssSTFormatSetting.ssColumnLetter);
                    cells[col].NumberFormat = set.ssSTFormatSetting.ssFormatName;

                });

                ssBinaryOut = workbook.SaveToMemory(SpreadsheetGear.FileFormat.OpenXMLWorkbook);
            }
            catch (Exception ex)
            {
                ssErrorMessage =  ex.Message;
            }

            } // MssFormatColumn


Thanks
Best regards



[Forums] It’s alive!

[Forums] RangeSliderInterval MaxValue expression causes app to stop

$
0
0

Hello Leen,

How are you setting the value of the MaxWeek variable?

When you say that the problem happens the second time you open the page, this lead me to think it is possibly a problem in the definition of the value in the variable that is assuming a value too high (or too low), for example, causing problems.

Cheers,
Eduardo Jauch

Viewing all 1476385 articles
Browse latest View live


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