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: display numbers in ascending order that are in a text field ?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: adding files to records?
I don't think you need separate folders for each record, If you just copy the share-link of the file to the right record. Also : In ninox you can use the function openURL() to go to a link that opens…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: adding files to records?
Hi Core, maybe this is what you're looking for :…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Delay field update for zapier integration
There is a command sleep() in milliseconds e.g. sleep(3000) which gives you a delay of 3 seconds but the downsize of this is that the database is idle in this time.(spinning wheel)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Tabs : new Before show and After hide scripts
It can be used if the tab lost focus, to check if all the fields are filled and give an alert. Or bring up a dialog to save, cancel input of a form...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: round up and round down give me an error
Its not round up but ceil() and round down is floor() the manual is not correct.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: round up and round down give me an error
Its not round up but ceil() and round down is floor() the manual is not correct.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: round up and round down give me an error
Its not round up but ceil() and round down is floor() the manual is not correct.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Bold words in formula results?
--- Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Bold words in formula results?
With html(<b>yourtext</b>) I think it'll work.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Look Up tables
@Sean, yes
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Look Up tables
@Mel & @Sean, Sylvain Moesching did mention it several times on the facebook page Ninox Community English. This was also presented to all the partners in December.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Not like "word"
It's possible in Ipad settings: General,keyboards, smart punctuation must be off. (Accédez à Réglages > Général > Claviers > Smart accents) btw it's: not like "jaune" and not like "noir" or:…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Look Up tables
Keep holding on for a few weeks, the new version will contain a dropdown list based on a table.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Styled Text Formula Help Please
Important update/edit: The html formula does seems to work on the printed pdf when used on Ipad version. (I'll test it later on MAC-version) Seems like the print-engine is different on native…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Styled Text Formula Help Please
This seems not to be possible. I tried with html styling in a formula field in the printeditor but once printing out, the field is no more styled. Code I used:…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: send an email only once a day
Maybe with a third condition(yes/no field) once the mail is send the third condition becomes false (or true).
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Learn and share
Reported - view
Re: Styled Text Formula Help Please
if 'Will Sell Individually' thenstyled("I will split this set and sell individually. Ask me for pricing.","white")elsestyled("Price is for all items shown in the main (largest) photo","yellow")end
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: How does Ninox go with over 100,000 records
Looks like the image posting in this forum is fixed...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Copy Data from one for into another then open that new record
Something in the line of: for i in select tableOne do (here we take all the Id's from tableOne one at a time in variable i and loops one by one) if i.Archive = "Yes" then (this checks if the current…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Copy Data from one for into another then open that new record
openRecord(i)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: how do i achieve nested grouping?
In table view you can create a extra column (chose formula in the show/hide menu if you click on a column header)with the concatenation of the two columns you wisch to order.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: How I can prevent duplicate records being added?
Another approach would be to use a formula field which give a warning there are duplicated fields, which would not require triggers. let a := upper(myField1); let b := upper(myField2);…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Best incremental Invoice formula
I use a separate table with the numbering for the invoices, estimates,orders. Example: https://ninox.com/en/forum/use-cases-5abd0b9c4da2d77b6ebfa395/create-tables-with-autonumbering-with-ease.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: One Other Question....
Why two invoice tables? You could also hide some irrelevant fields for this user in the Display field,if settings of the fields. So the layout simplifies more. Steven.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
1
34
35
36
37
38
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