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
Documentation
Solutions
Setup
Databases
Automation
My account
Administration
Webinars
Overview
Profile
RoSoft_Steven
RoSoft_Steven.1
Ninox partner
Belgium
www.rosoft.be
Follow
Joined
Sun Sep 30 17:18:00 UTC 2018
1619
posts
226
likes received
5
followers
Badges
Latest Posts
Re: Matching Phone Area Codes to Region
You could change the formula like this: let a := substr(Phone, index(Phone, "(") + 1, index(Phone, ")") - 1); first(select 'Area Codes' where 'Area Code' = a).…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Matching Phone Area Codes to Region
Create 2 formula fields in your Leads table with folowing code: Region: let a := substr(Phone, 1, 3); first(select 'Area Codes' where 'Area Code' = a).Region Timezone: let a := substr(Phone, 1, 3);…
Attachment
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Clean field when i duplicate table
Before the openRecord(c) line, you can add this for the numbers that needs to be empty: c.(number1 := null); c.(number2 := null); ....
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Send mail with attachments from different tables
@Sébastien Guillet The attachments should be an array, can you try : let attTotal := array(attCGV,attDonnees,attSante,attDocs);
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
1
Get help
Reported - view
Re: Select result if more then one - Rest API
denominazione is in the soci group in your example .json, so I think you need to put this in the code: 'Rappresentante Legale' := text(response.result.data.detttaglio.soci.denominazione);
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: OPENAPI
Did u try the url with postman? Did you get results? you can also test the result by adding codeline: alert(text(result)) Sorry, I can't test now on my ipad because of vacation trip.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: BULK Edit values with a button
for i in select yourtable do i.'yes/no-field' := false end @gary
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Send mail with attachments from different tables
@Sébastien Guillet I think someting like : let att1 := record(Documents,number(AddDocFacture).Document; let att2 := record(Documents,number(AddDocAnnexe).…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
1
Get help
Reported - view
Re: Send mail with attachments from different tables
You can select attachments from another table like this: let attachment := first((select Tablex).attachmentfield) see…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: No plot null values
👍
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Multiply a number to get a status
You can use floor('Chiffre d’affaires'/600)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Variable in a text field
It is possible using the replace() function. let myvar := TextField(multiline); myvar := replace(myvar,"<name variable>", 'First name'); myvar := replace(myvar,"<code variable>",…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
1
Get help
Reported - view
Re: Creating a Record from a Button Sending an Email
if you use variables in your sendEmail() function, you can reuse them to create a record. e.g. let sender:= userEmail(); let receiver := ClientEmail; let subj := Subject; let txt := Textfield;…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
1
Get help
Reported - view
Re: Printing in a grid with photos
Seems like a good example to use the Dynamic print solution. Link that could be useful. The manual here. Or the more detailed manual from carbone.io here.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: RTF -> .rtf File or Print output
Maybe this tread could be useful.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: script syntax
let fa := 'FILTRE Anné'; select 'Commandes Fournisseurs' where year('Date Achat') = fa Should do it...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: For each record
Would try this: for i in select SalesHeader do do as server let url := "https://fakeadress.com/" + i.'OrderNo'; let APIKey := "XXX"; let response := http("GET", url, {Authorization: APIKey,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: openFullscreen
@UKenGB Yeah, seems like a bug. It's like the fullscreen is connected to the record where you opened the fullscreen, and with the creation of a new record in that fullscreen,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: openFullscreen
You can use a Yes/No field (let's say FULLSCREEN, i use a toggle slider) and put this in the trigger after update: if FULLSCREEN then openFullscreen(this) else closeFullscreen() end The setting…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: VIEWING IMAGE SIZE
@PIERRE M If you want to know the filemetadate of a Imagefield, you can use this formula: let i := fileMetadata(this, last(split(text(Imagefield), "/"))) <--this gives an array of the filename,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: attach an attachment directly when sending an email
@Alain Maybe this post can help you for code examples. Check this video or this link to the manual for more info about the sendEmail function. NOTE: You need a cloud subscription in order to send…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: No plot null values
You can use the choicefield Charttype and choose Steppenareachart for a Bar Chart. Not sure if you can use more types of chart than these three with zero values,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Remove the repeated values from CutOff
@Rafael 👍 Glad you sorted it out
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
Re: Remove the repeated values from CutOff
let check := dialog(" Warning ", " ¿Confirm the Update Progress Project? ", ["Yes", "No"]); if check = "Yes" then for loop1 in select CutOff do CutOff_ := loop1.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
1
Get help
Reported - view
Re: how to eMail with attachment on the Mac version
@Carlos Maybe this post can help you for code examples. Check this video or this link to the manual for more info about the sendEmail function. NOTE: You need a cloud subscription in order to send…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 yrs ago
Get help
Reported - view
1
12
13
14
15
16
65
Ninox-Website
Overview
Learn and share
Get help
Service status
Documentation
Solutions
Ninox E-Invoice
Setup
Installed apps
Public Cloud
Private Cloud
On-Premises
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
Manage workspaces
Manage collaborators
Access permissions
Backups and storage
Process monitor
View all topics