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?
(I wrote in english for all other people, although my English is not very readable ) Hi Robert, Uwe will put data base on Webinar. But if you send me your email,… -
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?
After, you create one formula field (Fx) and you put this code in « formula » : html(GetComboBoxByArray(“Invoice”, number(this.ID), “Customer”, string((select Customer).ID), string((select Customer).… -
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 :…