JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
U Man Genius docs
Pages
Welcome
Ninext documentation
Ninext APP
Fichiers
Installation
Uninstall
Popup ninext
Fields and Functions
Debug tracer
🚧 Errors
🚧 Finder
🚧 Edit field
Copy, paste, duplicate & delete
HTML helping functions
Untitled page
Native JS
Clipboard sample
Temporaire
Badges
View field event
Button event
Scripting tips & tricks
General Information
Var and Let
Functions
If Then else
For and while loops
select, where, from, to
Order By (or Order)
create, delete, and duplicate
JSON in Ninox
Arrays in Ninox
Undocumented functions in Ninox
Manipulating Record IDs in Ninox
Dynamic Choice & MultiChoice
Scripting tips & tricks
For and while loops
JT
Jacques TUR
A
for
loop can be used to execute code and/or return an array of values. The type of the returned array corresponds to the type of the last statement between
do
and
end
.
For Loop
Looping Throu
for
i from
1
to
10
do
i
;
end
;
Looping Through an Array:
var
myArray
:
=
[
1
,
3
,
5
,
7
]
;
for
i
in
myArray
do
i
;
end
;
Looping Through Keys and Values of a JSON Object:
var
config
:
=
{
sep
:
","
,
qut
:
""
""
,
lf
:
"%0D%0A"
,
numberFormat
:
"point"
,
dateFormat
:
"locale"
,
header
:
true
,
sepHeader
:
false
,
encoding
:
"utf8"
}
;
for
key
,
value
in
config
do
key
+
" = "
+
value
;
end
;
See how to manipulate JSON variables in Ninox:
Special Variables / JSON
.
it is possible to do the same with a record, but you need to use
NativeJS from Ninext
to transform a record (
nid
) into JSON:
var
rec
:
=
(
first
(
select Customer
)
)
;
"Transforming a record into a JSON object"
var
config
:
=
#
{
:
any
return
rec
}
#
;
for
fieldName
,
value
in
config
do
fieldName
+
" = "
+
value
;
end
;
This approach can be useful for exporting all fields of a table into formats like CSV.
While Loop
While
loops are simple and do not return any value. They are used solely for performing iterative tasks and cannot be used to build arrays.
Example:
var
a
:
=
1
;
while
a
<
10
do
a
:
=
a
+
1
;
end
;
For Loop
Looping Throu
Looping Through an Array:
Looping Through Keys and Values of a JSON Object:
While Loop
Example:
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
Ctrl
P
) instead.