
Jacques TUR
Jacques_TUR
Ninox developper
France
Joined: Sat Nov 14 09:45:24 UTC 2020
https://www.umangenius.com
La perfection est atteinte, non pas lorsqu'il n'y a plus rien à ajouter, mais lorsqu'il n'y a plus rien à retirer.
Latest Posts
-
Re: Is it possible to have choice and multi choice fields where editors can enter new values directly into the field, rather than having to pre-define all values?
Hi Thomas, This forum is broken. we can no longer load images. If you want it, send me your email at : jacques.tur@neuf.fr I updated my code. Now you must put this code in Options->Global scripts :… -
Re: Is it possible to delete all PDF file attachments on any given record without having to delete them one at a time?
Oops, I made a mistake when I reformatted the code for you. This code works now. let NumId := this.ID; <- PUT YOUR RECORD ID HERElet i := 0;let FileName := “”;for f in files(this) do FileName :… -
Re: Is it possible to delete all PDF file attachments on any given record without having to delete them one at a time?
Oops, on this line, you must put your table name (Sessions is my table“s name) let lien := “https://api.ninoxdb.de/v1/teams/” + teamId() + “/databases/” + databaseId() + “/tables/” +…
-
Re: Is it possible to delete all PDF file attachments on any given record without having to delete them one at a time?
This code maybe help you. It delete all files for one record : let NumId := this.ID; let i := 0;let FileName := “”;for f in files(this) doFileName := text(f);FileName := substr(FF, index(FF,… -
Server slowdowns !?
Am I the only one with big server slowdowns?
-
Option Form, To“ on Select
I discover “from to” option on “select” function : on Customer table ([“Young”,“Roggers”,“Thomas”,“Grey”,“Marcus”,“Wilson”,“Wood”,“Williams”,“Smith”,“Cooper”]) you can select juste part of records :…
-
How to sort by descending
Good morning everybodyI need to sort table descending or assending. I try to use Order By, but I can’t choose the direction of order because DESC and ASC don’t seem exist.…
-
How do I find the storage address of an image / copy image outside of Ninox ?
I have a “Photo” image field and I would like to be able to share it outside Ninox, either by exporting it or via API REST. When I do that, I just have the name of the image: “G1812/Jacques 3.jpeg ”.…
-
Re: Is it possible to have choice and multi choice fields where editors can enter new values directly into the field, rather than having to pre-define all values?
Not in native Ninox yet (I hopefully later !?). You must to use linked fields or... html function with (lot of) code like JavaScript. This code, tested in Invoice template,…