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
Plugins
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
1634
posts
234
likes received
5
followers
Badges
Latest Posts
Re: Combining two dates fields into single appointment field
@Holly M Try this: AppointmentField := appointment(datetime(date(Startdate), time(0, 0)), datetime(date(Enddate), time(23, 59)))
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: How to clear/null a reference combo box
@Holly M I didn't use null but the number zero: 0 Does that work?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: How to clear/null a reference combo box
@Holly M 'Tasks to Apply' := 0 is the command to clear a reference field
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: can I hide a table only for one user?
@Javier Gómez One possible solution (trick) is, you leave the Tables on "hidden" and use a button that only displays if userIsAdmin() and jump to the disired Table with the openTable() function.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Integrating eMail HTML code for Outlook appointment invitation
You are talking about adding a .ICS file as attachment in your email right? By making a text-file in the .ICS format and attach this in your email can work.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Learn and share
Reported - view
Re: Conditional formula
Something like this: join(for i in slice('Posts' [checkboxfield] order by numberfield , 0,2)do i.'Position' + " " + i.'name' end, " / ")
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Conditional formula
try this: join(for i in 'Posts' [checkboxfield] order by numberfield do i.'Position' + " " + i.'name' end, " / ")
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Two condition nested If not working
let days_delta := 'Due Date' - today(); let display_color := if days_delta <= 0 then "red" else if days_delta > 10 then "green" else "orange" end end; styled(text(days_delta), display_color)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Warning of dynamic multi choice bug
Thanks for the warning @Fred 👍
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Learn and share
Reported - view
Re: creating a linked record in a subtable within a script
Try this: let me := this; let i := create subtable; i.(ParentTable := me)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Mutually exclusive choices
Create a table for your Car brands (Citoën,Volvo, Saab,...) (Table with one text field) Now on your Cars form, make a link-to field and set this field to "show field as" COMBOBOX.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Calendar missing some dates
Maybe the formula "show as" gives an empty result? But you still should see some empty colored line. Tested on the cloud-version v3.7.14 in Chrome
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Embedded Vimeo videos
@Jacques TUR The old domain - API with Ninox was www.ninoxdb.de ? Maybe the request is send trought this interface? The old interface api.ninoxdb.de/v1 continues to work,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Embedded Vimeo videos
@Jacques TUR Seems like you can also use the Vimeo API player used in a <div> when you have problems to display in an iframe. html(" <script src='https://player.vimeo.com/api/player.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Formula colour
You can use the styled() function in your formula field: styled(text('Choice with colors'), color('Choice with colors')) Where "Choice with colors" is your choice field.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
2
Get help
Reported - view
Re: Email a Report from a form with PDF
Maybe this template can help you : https://forum.ninox.com/t/x2h7fm9/send-emails-with-pictures-in-the-body-and-also-with-attachments-of-your-choice
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: What does it mean and what does it do ?
This means that the field won't show up on your android device or on a iPhone. See the manual for more about the ninoxApp() function: https://docs.ninox.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Make/Integromat doubt
@Antonio also I see in your code for i in my Slides do with a space. Is it like that in your database? It should be for i in mySlides do without the space... but I guess it's a typo on this forum...…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Make/Integromat doubt
@Antonio Can you try with the code put between do as server <your code> end and see if this works?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Copying pictures from table to table not possible!
@UKenGB this can help you I think: https://forum.ninox.com/t/35hrz2z
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Copy a image or picture
@UKenGB this can help you I think: https://forum.ninox.com/t/35hrz2z
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Automatic Importation of records via HTTP Call "GET"
If you use Postman, you get the list(that's great). What format is the list in? JSON or CSV like in your link above?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Integration from Calendly into Ninox
'Appointment field' := appointment(datetime(Date, 'START TIME'),datetime(Date, 'END TIME')))
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Formula issue
@Fred @pirinisz True what Fred said... So we can see the relationship between the tables.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: How to share active database with another user?
No, only if the same appleID is used on all the devices. And also only if you use the database in iCloud (= option when you create one) The user can also change your data!…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
1
16
17
18
19
20
66
Ninox-Website
Overview
Learn and share
Get help
Service status
Plugins
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