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: Formula doesn't work until I populate each field in the formula at least one time, then works for the one record. Needs to be repeated in each record?
You should use null instead of 0 like if 'Phone 3' != null then Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Error in a formula ?
'Premier mot' is a formula field, you can't put data in it. Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Distributing a database
Hi, Michel I believe you are using a browser to go to your database (I use Google chrome to get the best performance) ? On the startup where you see your TEAMS (top tabs),…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Issue with a formula
I think it's because that name begins with a space in your text-field. Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Progressive sum
let d := this;sum((select Months where 'Month n°' <= d.'Month n°').'Budget €') Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Extract names from compound names
use this formula: substr(Nom, 0, index(Nom, " ")) Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: http() function isn't working
In my experience, when i use 'do as server' in my http request it works. If I don't, it blocks. e.g.: let responce := do as server http("GET","......... end Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: field name with HTML formatting
Maybe this tread is also usefull:…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: fields printing visible or invisible
If you mean printing a table view, then you can use different table views to filter what you want to print. It's always what's displayed that would be printed.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: table view with both combo box (selected options and 'empty or null option) in same view
Does this expression gives the wanted result? if combobox !> 0 then "empty" Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: delete x qty of records
I would try to put the date in a variable : let d := date(22/01/2015); delete (select DEJOBS where text(Jobstatus) = "cancelled" and Orderdate <= d) Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Representations of the Id
The left column in your screenshot doesn't show the ID number, its the line number (like excell). To show the id you need to click on a columnheader and there chose to show the ID column.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: http() function isn't working
The CORS problem was solved by adding 'do as server' in my GET request. @ Sean , FYI The code is in a button. The result I'm getting starts with this : PK mimetypeapplication/vnd.oasis.opendocument.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: To delete some raws in one time
Hi,The menu for the row-actions is here: Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: http() function isn't working
To be complete, on my Macbook with the native app, it also won't work.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: http() function isn't working
Sean, Can't tell as this is a new created API call I try (carbone.io) I've installed a plugin(CORS Everywhere) in Firefox and now I don't have connect errors.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: http() function isn't working
@Sean, Have you looked in the console? I also have also blocked requests due to > CORS-header ‘Access-Control-Allow-Origin’ may not be * Any Solution?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Button to populate a separate table from another table (and sub table)
Try with change this ?: ....let xSup := Suppliers;.... i.(Seller := xSup);
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Learn and share
Reported - view
Re: Button to populate a separate table from another table (and sub table)
Try this: let xPODate := 'Purchase Date';let xPONum := 'PO Number';let xPOID := number(this.Id);let me := this;for p in select 'PO Items' where 'Purchase Orders' = me do let xProduct := p.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Learn and share
Reported - view
Re: Displaying the number of documents
cnt(files(this))
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Help ! I removed a field ! Can I restore it
I think you need to export in csv first and then import them in an earlier backup.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Help ! I removed a field ! Can I restore it
Maybe exporting all the data and go back to a restored backup to recover your removed field. And then import the new data you've exported on the last one.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: Help ! I removed a field ! Can I restore it
If you have a cloud abo, you can restore an automatic backup. If you don't have one, then contact support. I think the field is gone but the data is still in the history file i think.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: display numbers in ascending order that are in a text field ?
I think the quotation marks (guillemets) are of the wrong type in the fieldname. Maybe it's better to click on the fieldname like: Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
Re: display numbers in ascending order that are in a text field ?
Here's a video of this: https://www.dropbox.com/s/ldpg0abddjvtjqy/CalcNumber.mp4?dl=0 Steven.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
4 yrs ago
Get help
Reported - view
1
33
34
35
36
37
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