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: Enter the content of another field inside a rich text field
@Rafael You mean the styling (bold,underline,etc.)? Not sure but it seems your print engine isn't capable of printing html, you can ask support@ninox.com to enable this (so I read this on the forum).…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Enter the content of another field inside a rich text field
I've made an example with both ways, Rich text field and Formula field. If your PDF is not styled with rich text, seems you should contact support to enable this feature in your print-engine.
Attachment
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Calling an image from another table
@Mel Charles We mixed the two methods for the attachments... it should be item(files(record(SystemFile,1)),0) - item(files(record(SystemFile,1)),1) - item(files(record(SystemFile,1)),…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Calling an image from another table
@Mel Charles 👍Always be at your service with pleasure....
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Calling an image from another table
@Mel Charles Something like: let adv1 := concat([1, 4, 7, 10]); let adv2 := concat([2, 5, 8, 11]); let adv3 := concat([3, 6, 9, 12]); let mtd := text(month(today())); let myAtt :…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Font in print layout
@thomas Not sure if this could help: I changed the size of the image field and centered it in the table. Also I made the table cells visible, but you can change that if you want.
Attachment
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Calling an image from another table
@Mel Charles Try: let myAtt := item(files(record(SystemFile,1)),0); or if your attachment comes from a picture field (like your screenshot) let myAtt := first((select SystemFile).Advert1)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Where’s the information on learning the NX language rather than just isolated statements?
Here are some recources: The Knowledge Base/manuals : https://docs.ninox.com/en/ Youtube chanel of Ninox: https://www.youtube.com/@ninox1273 And then you have the forum as well : https://forum.ninox.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Display multiple dynamic choice items separated by returns rather than commas in Print
Hi Guys, FYI, here with a oneliner: join(for i in numbers(dMC) do record(Cities,i).City end, " ") Cities is the source table of the dMC field with one text field City. @Fred @tjdegrood
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
2
Get help
Reported - view
Re: Font in print layout
@thomas I'll send the word-template. The image has to contain your {d.Image} for the alternative placeholder text.
Attachment
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Font in print layout
@thomas I tested this and this is the result: As you can see, the image is centered in the table. (= 2-row table here)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Font in print layout
@thomas I guess you can solve this if you put your image in a tablecell in your word document where you can center your image. In carbone, there seems to be no alignments possibilities for images...…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Insert multiple elements into case of switch
Thanks @Fabio , I knew it was something with brackets... 🤭
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Insert multiple elements into case of switch
I think this (adding {} ) will work: switch 'Progress Bill' do case 1: 'End data' := null case 2: {'Total Price' := 0; 'End data' := null} case 3: 'End data' := null default: "Error" end
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Elimination of decimal numbers
You can use the round() function: round(A * B / 100,2)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Font in print layout
@thomas You can't use special characters for the field names, also no spaces. More explanation about Carbone here The used font has to be installed on both computers I guess.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: Font in print layout
@thomas well, if you jump to time 11:40 in this video you'll get some explanation how dynamic print layouts work.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: send e-mail problem
@Jan Inge Iversen well, this with the sendEmail() function. Sending the email with a email field works fine.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Font in print layout
Since html styled text looses the styling when printed out on PDF. The only possible solution i guess, is to work with dynamic print layouts. More about the dynamic printlayouts here.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Styling a portion of a formula
maybe change this in your last line code: html("<div> <span style='color:red;'>[" + text(PROTOCOL) + "]</span></div>")
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Learn and share
Reported - view
Re: Styling a portion of a formula
@Alan Cooke Like @Fred said, you could use html with CSS styling to do so: html("<div> Attached files: <span style='background-color:red;color:white;'> " + Files + "</span> ➡️" + BUILDING.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Learn and share
Reported - view
Re: Dynamic select unique : can you please help me to translate this code on NINOX for dynamic selection
unique([1,1,2,3,4,4,5,6,6,7,8,8,9]); Gives as result = 1,2,3,4,5,6,7,8,9 See : https://docs.ninox.com/en/script/function-overview/functions/unique for more about the unique() function.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Strikethrough text in formula
@pirinisz Strange... What do you get if you put the position field in a variable? let txt := text(position); if status then html("<p style='background-color:red;color:white;text-align:center;…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Strikethrough text in formula
@pirinisz Maybe there's something wrong in your code? On my end it works. The field containing the formula is a formula field, the field 'position' is a text field and the field 'status' is a Yes/No…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Strikethrough text in formula
You can use CSS styling also: if status then html("<p style='background-color:red;color:white;text-align:center;text-decoration-line:line-through;'>" + position + "</p>") else html("<p…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
1
15
16
17
18
19
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