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: 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
Re: Formula issue
@pirinisz you could extend the loop and the join like : join(for i in table do i.title + " :" + join(for p in i.organisationtable do p.organisation end," / ") end,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Formula issue
@pirinisz You could try something like: join(for i in table do i.title + " :" + i.organisation end, " ") Be aware that your formula field has to be minimum 2 lines high because everything would be on…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Formula issue
Can you post your formula you already have for more insight of what you want?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Show Fonts (and Styles) in Rich Text not working
@Jan maybe this could 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: Ability to make field layout in form "static"
This is a great example of applying layout elements: https://forum.ninox.com/t/m1hrt29
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: POS System / Restaurant / Food Truck
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Learn and share
Reported - view
Re: Sum related field with specific criteria issue
Since Proposals is a child of your Projects table, you don't need the select() function. It should work like this: sum(Proposals[Awarded].'Total Cost')
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Ninext : Debug Tracer
As always, @Jacques TUR you've been great again. Thanks for all the effort and time you put into this! Happy holidays everyone ! 🎆
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Learn and share
Reported - view
Re: Send reminder SMS
@Jack Fleming Glad you managed to get it working 👍
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Child record table with dynamically header
This looks like an example of a CSS/JS hack, something @Jacques TUR might be able to help with?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Learn and share
Reported - view
Re: Select an element of choice dynamic in formula
I hadn't taken it that way anyway @Fred because I hadn't even paid attention to the above codes. Until you pointed it out and then indeed I saw it, you were also right.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Select an element of choice dynamic in formula
@Fred You're right, the last code does work , it takes always the same value from the TabB.(with ID 4) My code takes the value from the current record in TabA where the button is pressed.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Creating record from another table
Example code to do this : let value1 := 'field_weight_T2'; let value2 := 'field_size_T2'; (for example if you have a second field 'size') let i := create T1; i.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
1
16
17
18
19
20
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