Skip to main content
Forum
Privacy
Contact
How to enable Javascript
Sign Up
Log in
Welcome to the Ninox community
Search all topics or
ask a question
Learn and share
Get help
Service status
Plugins
Documentation
Setup
Databases
Automation
My account
Administration
Solutions
Webinars
Overview
Profile
Jacques TUR
Jacques_TUR
Ninox developper
France
www.umangenius.com
Follow
La perfection est atteinte, non pas lorsqu'il n'y a plus rien à ajouter, mais lorsqu'il n'y a plus rien à retirer.
Joined
Sat Nov 14 09:45:24 UTC 2020
912
posts
626
likes received
21
followers
Badges
Latest Posts
Re: Ninext project
@Louis Cornacchia Send me an email to Jacques.tur@neuf.fr and I will send you the installation procedure.
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: Ninox names vs user names
@Sean The schema read from the server is database.originalSchema. This NativeJS function copies it to the clipboard in the form of formatted text. Be careful when manipulating the schema and…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
Re: Ninox names vs user names
@Sean I am still on vacation. I will look into it when I return next week. Just to clarify the need a bit, what would be, in your opinion, the differences between the raw schema and the processed…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
Re: Ninox names vs user names
@Sean You can also use it directly as a JSON object (any) in Ninox to retrieve information from the database schema. function getFieldNameById( table : text, fieldId : text ) do var fr := {}; var s :…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Get help
Reported - view
Re: Ninox names vs user names
@Sean you can obtain the schema directly with this function: function getDBConfig( ) do #{:text return JSON.stringify(database.schema.toJSON()); }#; end; getDBConfig();
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Get help
Reported - view
Re: Ninox names vs user names
@Alan Cooke ok, is clear now. Try it on the console to find name of field from Ninox field Id (letter) : function getFieldName( tableName : text, fieldId : text ) do #{:text var t = database.schema.…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Get help
Reported - view
Re: Ninox names vs user names
@Alan Cooke I'm not sure I understand what you're trying to achieve. Could you provide more details?
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
Re: v3.9 is now live
@RoSoft_Steven This update seems minimalist, doesn't it?
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Learn and share
Reported - view
Re: html() function
francesco.stefanello The easiest way would be to use NativeJS, which requires Ninext to be installed. Do you want to do that?
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: add onselect event for view field
@Fred try it : First, select the current record in DashTemp, so you can find the horse from horseId var horseId := first( select DashTemp where id := event.targetId).…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: Ninext project
@Fred In the "after opening" function, there is an example that systematically tries to connect to the Ninext server to retrieve the latest version. If the server responds,…
Attachment
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Learn and share
Reported - view
Re: Run python script from Ninox
@francesco.stefanello There are two solutions: 1 - Use NativeJS in the code of a Ninox button. 2 - Create a button using an HTML function. I'm on vacation,…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
Re: Ninext project
Hello, everyone! There was a server issue yesterday. It stopped providing the code for Ninext and DarkMode, causing the dialog boxes to appear but nothing happened. This was fixed yesterday evening.…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: Dark Mode
@Mel Charles The problem came from the Ninext server, which provides Sean's code. I don't know where the error came from because I haven't changed anything for several weeks,…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Learn and share
Reported - view
Re: Ninext project
@Javier Gómez Hello Javier, I received your two emails, but they ended up in my spam folder. I apologize for that, I will look into what's happening with my email server.…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: JSON: add a block based on a given condition
@Fabio In JavaScript, JSON has the same behavior.
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
Re: JSON: add a block based on a given condition
@Fabio Indeed, as we can see by using the debug function with Ninext, there is still a trace of "FiscaleCode" in the JSON even if it doesn't appear when Ninox converts it to text for display.…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
Re: JSON: add a block based on a given condition
You can use setItem function to update your JSON structure step by step : https://docs.ninox.com/en/script/function-overview/functions/setitem. You can also use if to define the value of the key.…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
Re: NEW: Dynamic print layouts for public cloud
@Rijard Indeed, I just conducted a test with the Dynamic Report, and I spent the entire day familiarizing myself with it to print a rather simple document containing just a table.…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: Ninext project
Thank you very much to@chris for finding this bug. I have just fixed it, and everything seems to be working correctly now. It turned out to not be a recurrence issue after all,…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
3
Learn and share
Reported - view
Re: Ninext project
@chris I've been thinking about doing it for a long time. Perhaps the time has come. You'll have to give me a bit of time, though, because I'm in the process of launching new software for my first…
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Learn and share
Reported - view
Re: Ninext project
@chris Yes, it's true, I can reproduce it. It seems to be due to the recursion between these two global functions: leer and telCorrection. I'll see what's going on.
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: WixNox driver project
I fixed a bug on WixNox: sorting booleans in descending order returned a 400 error to the Wix request and the data was not returned.
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
1
Learn and share
Reported - view
Re: Ninext project
@MG Send me an e-mail and I'll send you the documentation. My address is in my profile.
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Learn and share
Reported - view
Re: Ninox API issue
@Care to retrieve the IDRecord number, write : (select Customer).number(id) to obtain IDTable+IDRecord write : (select Customer).string(id)
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
Get help
Reported - view
1
10
11
12
13
14
37
Ninox-Website
Overview
Learn and share
Get help
Service status
Plugins
Documentation
Setup
Installed apps
Public Cloud
Private Cloud
On-Premises
Plugins
Databases
Tables
Table relationships
Fields and elements
Pages
Views
Import and export
Modules
Printing
Templates
Use cases
Automation
Performance
Scripting
Functions
API
My account
Subscriptions
Administration
Private Cloud Administration
Manage workspaces
Manage collaborators
Access permissions
Backups and storage
Process monitor
Solutions
Ninox E-Invoice
View all topics