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
923
posts
631
likes received
21
followers
Badges
Latest Posts
Re: Multi language solutions best practices
@iliper LTD I'll try to fix it. Are you work with the Mac App or the cloud ?
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Global function to work with out all parameters
@Fred Does it work when you call teamAvP with void in the cName parameter?
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Global function to work with out all parameters
@Fred Like I said here you must to specify the type of void like this : (rType = text(void) or 'Round Type' = rType). With out it, Ninox try to found record with 'Round Type' = void.
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Multi language solutions best practices
@Javier Gómez Here it is
Attachment
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Multi language solutions best practices
@Javier Gómez Yes, I need to modify it a little bit. I'm going to change the method to display the labels. After that you won't be able to edit the label directly on the foirmulars,…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Global function to work with out all parameters
@Fred You can also use the cascade call with different parameters: function GlobalJS(Gjs : text) do #{:text return Gjs}# end; function selectA(title : text) do select Customer where Title like title…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Global function to work with out all parameters
@Fred I'm not sure what's wrong? The function call with text(void) or the filter? Can you tell me more so I know where to look? Or send me an example?
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Multi language solutions best practices
WARNING: This is a test in progress. Do not use this extension of Ninext on your database for the moment. If you want to do it, do it on a copy only.
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Global function to work with out all parameters
@Fred I just saw that you have to put text(void) : function teamAvP(tID : number,yNum : number,cName : text,rType : text) do avg((select Results)[TeamID = tID and (yNum = void or Year_calc = yNum)…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Multi language solutions best practices
Here is a first draft that already works quite well. It uses what is already partly programmed in Ninox (see attached database). To modify a label (or tooltip),…
Attachment
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
1
Get help
Reported - view
Re: Multi language solutions best practices
Ninox is already structured for translation. There are reserved spaces to save the labels in multilanguage. Some of the mechanisms are in place, it just needs to activate a little extra code so that…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
1
Get help
Reported - view
Re: Global function to work with out all parameters
It is not possible to set default parameters or omit a parameter when calling a function. Ninox expects the right number of parameters with the right type for each.…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
1
Get help
Reported - view
Re: Ninext : Fields inspector (evaluate the impact of changing/deleting a field before to do)
@Oliver Thank you very much 🙏. I haven't actually organized it yet. Maybe I could put a hat on the floor ? 🎩😁 I'm planning to professionalize Ninext,…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
2
Learn and share
Reported - view
Re: Upload a single file with POST API
It would be easier to help you if I could better understand what you want to do. Uploading a single file with the POST API is a solution to what?
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Is it possible to run the script in a button from another script?
I think the best solution is to create a global function for each button. The 6th button calls all functions directly. If you use the running record in your buttons,…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
3
Get help
Reported - view
Re: Ninox Mac app now free
I received it too. It's good news, even if I had already bought the Mac application 😅
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
2
Learn and share
Reported - view
Re: Upload a single file with POST API
I also think that the new http functions (see here) could help you send multipart files, but I never use it. One thing is sure, it is not possible to download a file by giving directly its location…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Upload a single file with POST API
ask to @Axel Rothe , who created a Ninox REST API in JavaScript and shared his work on GitHub : see his post here
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: Renaming part of title attachment
@thomas I'm trying to understand better, you want to replace the first number in the string? Can this code help you? replacex("HAGELSCHUTZ-Nr1082-150x400cm-Backlight-nicht-hinterleuchtet-mit…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
1
Get help
Reported - view
Re: Ninext project
Ninox developers have fixed the bug. Everything works fine now 😃
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Learn and share
Reported - view
Re: Renaming part of title attachment
You have two options : 1 - Use html in a formula : "set the file to rename here"; var file := first(files(this)); "set the new file name here"; var newFileName := "test.…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
1
Get help
Reported - view
Re: Change "+ Create record"
@Sean And you are right, because in the end the permanent loop solution works well 👍. If you let the loop run to update the table button, it works fine.…
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Learn and share
Reported - view
Re: Stack fields next to Multiline Text?
@Kent Signorini good job ! 👍
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Get help
Reported - view
Re: v3.7.11 new functions
@Fred said: How did you find these new functions? Ninox is horrible about documenting changes On the source code of Ninox. It is easily accessible on cloud version.
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Learn and share
Reported - view
Re: Filters ON warning.
@Mel Charles said: It is finally good to realise that you are human after all 😂 @Mel Charles said: Bet you will have worked it out by tomorrow !!! I did it 😁
Jacques TUR
Ninox developper
Jacques_TUR
3 yrs ago
Learn and share
Reported - view
1
19
20
21
22
23
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