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
Plugin apps
Documentation
Setup
Databases
Automation
My account
Administration
Solutions
Webinars
Overview
Profile
RoSoft_Steven
RoSoft_Steven.1
Ninox partner
Belgium
www.rosoft.be
Follow
Joined
Sun Sep 30 17:18:00 UTC 2018
1621
posts
226
likes received
5
followers
Badges
Latest Posts
Re: Alert message on CloseRecord
John, Deleting the record is the same as leaving the TAB so it checks if the required field is present. If the case is that Type-field is empty then you also get the warning.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Order by desc
Maybe this will work: order by number(Dato)*-1 Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Alert message on CloseRecord
Use the trigger after hide setting of the TAB element.(If you don't have a tab element, create one and place it on first position of the fields in the column) something like : let me := this;…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Image copy from Child Table to Parent Table
To move images from one table to another, you can use following scenario: let i := shareFile(record(AnotherTable,1).Image); <<Source where the image isImagefieldInCurrentTable := importFile(this, i,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Problem with printing in Windows and Android.
support@ninox.com is the correct email. Not sure if the old one is still in use...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Problem with syntax and filling array
Hoi Wieland, Try this: select Customers where Voornaam like "Ellen" or if Namen is a subtable of customers' select Customers where Namen.Voornaam like "Ellen" Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: PROBLEMA LINEAS SUBTABLA EN INFORME IMPRESION. PROBLEM LINES SUBTABLE IN PRINT REPORT
It's normal you only see 6 or 7 records (lines) in the printeditor, but once you create your PFD,you should see all of them. Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: It's possible to assign the name of a table from a variable?
Clonev, you can use the eval() function for this: let myT := this.text(name.Table); let script:= "sum ((select"+myT+").Incomes) - sum ((select"+ myT+").Debits"; eval(script,this) Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Hide Add icon
You can't hide the formula field with null but you can style the field to invisible (background , textcolor and lable to none).
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Can I use importfile() to pull in a local file instead of web file?
Not sure if this would work (can't try it now): importFile(this, openURL(vFileToAttach)); Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Example of print output with Carbone instead Ninox Print-Editor
Interesting Use Case Uwe, I had also tried this a while ago but got stuck. I suppose you need intergromat to pull in the generated PDFs into ninox as attachment?…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Learn and share
Reported - view
Re: Problem with printing in Windows and Android.
Poligon30, Quoting Ninox: "Over the holidays, there may be a slight delay in answering your questions" I would suggest waiting a bit more. Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Stuck on simple multiple if/else
or simply a formula(Score) field with : number(Rating) assuming that the choice values are numbered from 1 "Not Much" ...... 3 "Significant" Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Problem with printing in Windows and Android.
It's a known problem, it has something to do with the printengine used by Ninox cloud. You can mail support@ninox.com to ask if they can change the printengine for you. Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Trigger after change
Bobo, Maybe it's somewhere in your code (just trying to help here), can you post the complete code? Just mask your API keys if there are.If you're running On Chrome on Windows,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Problems with appointment fields
Do you have the latest update? I also having NO problems with appointmentfields. I'm running version 3.5.10 on macbook and also 3.5.10 on iPad. Strange... I wish I could help you... Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Trigger after change
Maybe if you close the record and then open it again? (I'm just helping to think. If it works, you can fire your integromat scenario) like: let me := this;closeRecord();openRecord(me);…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Trigger after change
The solution could be the use of a formula field as no triggers after updated are needed: if TOTAL > 0 then styled(text(TOTAL) + " Items on hand", "green")else styled("No items on hand",…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: "Set-Date-script" - something goes wrong
John, I suppose Deadline,Today,DoneDate and Status are fields in your table? Else if you use them as variables in your code you must use the 'let' - prefix to assign them.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Disable create in link from field however allow select record
Antonello, see this tread: https://ninox.com/en/forum/technical-help-5ab8fe445fe2b42b7dd39ee7/dimensione-dialog-61c9e9476fd519722d0dd8ff?post=61c9ffb26fd519722d0dd905&page=1 Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: cloud imprimir código de barras
If there is indeed a attachment in the attachment TAB created, I would suggest to change >>BARCODE := xname + ".png";<< to BARCODE := last(files(this)) Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Auto increment in subtable
I will have to unlearn the habit of using a select function and make more use of Alain's solution when the tables are linked. Similar to the view in the subtable,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Auto increment in subtable
Well Alain, you did it again! You are truly a master. This is why I love this forum. We always learn something from each other. Well done and thanks 🙏
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: urlOf
only urlOf(this) doesn't work for you?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: How I can prevent duplicate records being added?
Julien, Try this: let me := this;let myField := Localisation;if cnt(select Immeuble where Localisation = myField) = 2 then let responce := dialog("Warning !", "There is a duplicate found", ["OK"]);…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
1
25
26
27
28
29
65
Ninox-Website
Overview
Learn and share
Get help
Service status
Plugin apps
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