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
Documentation
Solutions
Setup
Databases
Automation
My account
Administration
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
870
posts
559
likes received
20
followers
Latest Posts
Re: Multi language solutions best practices
@Leo Woer This function doesn't work entirely and as it's due to disappear I'm no longer maintaining it. Don't hesitate to tell Ninox about the benefits of having a multi-language interface.
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Get help
Reported - view
Re: Ninext project
@Robert D. yes, the project is still available. However, the sources are no longer available and that's why the GutHub link doesn't work. If you want to install Ninext on your database,…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: Ninext project
Hello, I just published version 2.1.33 beta of Ninext to fix a bug in an unusual case: When the same variable is declared twice with the debug function after each declaration,…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
1
Learn and share
Reported - view
Re: Ninext project
Hello everyone, I've fixed the bug with https://www.rrweb.io cookie. You should now be able to use it again at normal speed. In any case, the errors in the development console have disappeared.…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
2
Learn and share
Reported - view
Re: Ninext project
@Jacques TUR Sorry for all this, it's not a real solution, it's just waiting for me to fix this bug.
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: Ninext project
@Patrick W. Without running JavaScript I can't see a solution. On the other hand, the module that seems to be causing problems with rrweb is FieldsInspector.…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: Ninext project
@Patrick W. It appears that it is a user interaction tracking cookie that is being disrupted by Ninext (https://www.rrweb.io). If I block cookies on my page, there is no longer an error.…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: Ninext project
@Icarus - Ralf Becker said: I hope, you are fine. It was just a little bit "quiet" in this forum Yes, I also think it's been a long time since I've evolved Ninox.…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
2
Learn and share
Reported - view
Re: Ninext project
@Icarus - Ralf Becker Yes, it's a very good idea. I wanted to do that from the beginning, but unfortunately, I couldn't because after modifying the text, Ninox refreshes the text editor,…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: index with regex
You can do this in two stages: extract text using a regular expression find the position of the result text using the index function : var myText := "ABC123"; var myRegExp := "\d+"; var textResult :…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Get help
Reported - view
Re: v3.11 announced
@Mel Charles yes !!!
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
1
Learn and share
Reported - view
Re: Custom Buttons
@Rafael thanks for this amazing icons collection !
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: Convert a string to Base64 format
@Sotirios Zormpas I found a clear explanation on this site about Base64: https://base64.guru/learn/base64-algorithm/encode. With that I was able to recreate encoding and decoding functions in Ninox…
Attachment
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
2
Learn and share
Reported - view
Re: Need Assistance with Creating a Search Button and Displaying Results in a Table
I suppose you have criteria on the number of rooms, the area of the house, the area of the garden, etc... In this case, you can use display the list of results directly in the Search table form using…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Get help
Reported - view
Re: Convert a string to Base64 format
And with Ninext, it's shorter 😅 : var source := "hello word"; var base64 := #{:text return btoa(source) }#;
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
2
Learn and share
Reported - view
Re: Convert a string to Base64 format
@Sotirios Zormpas Of course it's easier with Ninext, but it's also possible to do it with an html field by using the onclick event of a button to execute a function that converts to basde64,…
Attachment
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
1
Learn and share
Reported - view
Re: Convert a string to Base64 format
you can use btoa() function in JavaScript : https://developer.mozilla.org/fr/docs/Web/API/btoa
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
1
Learn and share
Reported - view
Re: How to Iteratively Add Items to a New Array
@Nicholas Doherty said: let finalArray := []; Copy There is no type, and Ninox cannot infer a type when using array(). You may notice that if you remove line 6,…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: How to Iteratively Add Items to a New Array
@Nicholas Doherty said: Simple version, array of numbers: let finalArray := [number(void)]; for i from 1 to 10 do let currentArrayItem := [i]; finalArray := array(finalArray, currentArrayItem) end;…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Learn and share
Reported - view
Re: Getting pdf file from the API response
It seems to me that by just modifying the code like this (line 7 and 15), it should work.@Sotirios Zormpas , could you test it and let us know? let url := "https://testeps.e-prescription.…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
1
Get help
Reported - view
Re: New functions
To retrieve binary files using the http() function : In this post (https://forum.ninox.com/t/h7y33v0?r=35y36yp), we discovered that the http() function can return a file in base64 format.…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
3
Learn and share
Reported - view
Re: Getting pdf file from the API response
@Mconneen That's exactly it 😅. I traced Ninox's code to try to understand how responses to requests made with the http function were being handled. I came across this post-processing that is done…
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
1
Get help
Reported - view
Re: Getting pdf file from the API response
The problem is indeed due to the fact that the HTTP function returns text, which distorts a portion of the content of binary files such as PDFs or images.…
Attachment
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
4
Get help
Reported - view
Re: Getting pdf file from the API response
I just found a solution in JavaScript (Native JS with Ninext). I'm finalizing a demo app, and I'll post it by tomorrow evening.
Jacques TUR
Ninox developper
Jacques_TUR
1 yr ago
Get help
Reported - view
Re: Ninext project
@Jacques TUR Since version 3.10.8 of Ninox, calls to JavaScript with Native JS ( #{...}# ) no longer work. I have released a version 2.1.31 to fix this.
Jacques TUR
Ninox developper
Jacques_TUR
2 yrs ago
2
Learn and share
Reported - view
1
5
6
7
8
9
35
Ninox-Website
Overview
Learn and share
Get help
Service status
Documentation
Solutions
Ninox E-Invoice
Setup
Installed apps
Public Cloud
Private Cloud
On-Premises
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
Manage workspaces
Manage collaborators
Access permissions
Backups and storage
Process monitor
View all topics