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: Use Ninox as a backend with an online ordering system
@Vermaji You can do this with plain html with a little JavaScript. You also need a automation Platform (like@Fred said: make.com or zapier.com) to communicate between Ninox and your website (to hide…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Sort by Nb Numerical Size
If you use the correct JSON format this works: let data := [{ food: "bread", Nb: 3 }, { food: "apple", Nb: 7 }, { food: "rice", Nb: 1 }, { food: "banana", Nb: 5 }, { food: "milk", Nb: 9 }];…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: make Ninox the cell text bold
font-weight: bold; font-weight: normal|bold|bolder|lighter|number|initial|inherit;
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Issue with sending data via HTTP request in Ninox (JSON format)
@iliper LTD try with this version in line 33 to line 36: let response := do as server http("POST", "https://your-api-url.com/endpoint", headers, bodyData) end;
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Request Regarding the "+" Button Formula in Ninox
@demoeditor I made a little example. You still need to push a button, but this is an minor issue....
Attachment
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Hiding Edit Mode switch
@Alan Cooke @Sean This is the class I have in my Private cloud and my public cloud....: .Container-iDxjuJ hJSHNq .Container-iDxjuJ.hJSHNq
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: Hiding Edit Mode switch
@Alan Cooke Wouldn't this completely lock down your database?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Hiding Edit Mode switch
Yes, Editor rights instead of Admin....
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Problem with HTML
@Rafael
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: How do you display information from a record on a website?
@Sam Villano This depends on your use case. Do you need a lot of traffic? more than 10.000 operations / month?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Problem with HTML
@Rafael Which field do you want to show from the WBS table? , now you get the recordnumber(36) change the first line to: let ipc := first(select WBS where IPC = 1).fieldYouWantToDisplay;
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Problem with HTML
@RafaelI was editing this post, you saw the old version....
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Problem with HTML
@Rafael If you use a select() function you get an array. To get a record, you have to use let ipc := first(select WBS where IPC = 1) I also removed the text() in this select because 1 is not present…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: How do you display information from a record on a website?
You can make a webpage for this, but you also need make.com for the connection with Ninox... (Yes you can do this without make.com and use the API of Ninox but your API key would be displayed public…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: Create a zip file of all invoices generated with printRecord()
@Sébastien Guillet said: Please note however that the zip file is deleted from 'Fichier zip' and will be moved to the paperclip. Did you check the removeFile() function?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Create a zip file of all invoices generated with printRecord()
First you need to create all your PDF's because of the lag between the actual PDF is created and the availability of this file. Then you need a second image field where you would put your .…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: How to implement a button function in Ninox: Create a new record and pop it up?
@我是我的我 I guess that's the reason why the big "Ninox CRM" (due to modularity, only available on private cloud) is using the "second way" version, so Table triggers would still work ...…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: How to implement a button function in Ninox: Create a new record and pop it up?
@我是我的我 Yes, by using ui.openTable: let x := tableId("ADD"); html(" <head> <style> .szButton { border: 1px solid #566eb1; color: #566eb1; background-color: transparent; padding: 2px 20px; font-size:…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
2
Get help
Reported - view
Re: How to implement a button function in Ninox: Create a new record and pop it up?
@我是我的我 I tried different approaches, even in a button. It's probably a bug in the app version. Maybe someone smarter can sort it out?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: How to implement a button function in Ninox: Create a new record and pop it up?
@我是我的我 There is a trick to do this by using a hidden field where the code is in the trigger after update to create a new record and open it. I have updated your database with an example of this:…
Attachment
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Issue with adding products to the cart and creating invoices
@Fred True
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Issue with adding products to the cart and creating invoices
@iliper LTD I suppose your CartClosed is a Yes/no field? Then you should know that such fields have 3 states: true, false and null. So if you want to check if the CartClosed is "No" it will probably…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: Submit button with required fields notification.
@Michal Bor@Fred There is also a shorter version, see attachment of Fred's adapted example database (open Dashboard and Field Check tab). Also easier to expand if fields need to be added or if you…
Attachment
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
2
Get help
Reported - view
Re: JSON in dynamic fields
@Fred Strange, I get this but I'm on private cloud using chrome browser.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Learn and share
Reported - view
Re: JSON in dynamic fields
@FredAre you on version 3.14.1 ? It works on my end though?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Learn and share
Reported - view
1
2
3
4
5
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