Skip to main content
Ninox-Website
Ninox-Documentation
How to enable Javascript
Sign Up
Log in
Learn & Share
Get help
Webinars
All topics
Contact
Privacy
Overview
Profile
RoSoft_Steven
RoSoft_Steven.1
Ninox partner
Belgium
1,516
185
4
Joined: 30 Sep 2018
Follow
https://www.rosoft.be
My Posts
Latest Posts
Re: Show modified by for a specific field
You can have a text field and fill that in via the trigger after update of your checkbox. textfield := "changed by " + userName() + " on " + text(today())
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
10 hrs ago
Get help
Reported - view
Re: Spotify API Request
@francesco.stefanello To help you debug, you can open the console of the browser and see if you have errors there. If you have CORS errors, it's certainly because you need to use "do as server".
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 days ago
Get help
Reported - view
Re: Spotify API Request
@francesco.stefanello see this example, sorry, change it to this... https://docs.ninox.com/en/api/http-function#example
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 days ago
Get help
Reported - view
Re: Spotify API Request
you need to write "do as server": let response := do as server http("GET", "https://api.spotify.com/v1/artists/" + artistId + "/albums", { Authorization: "Bearer " + token, 'Content-Type':…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 days ago
Get help
Reported - view
Re: Dynamic invoices (.docx) with subtable - problem
@Fred If I may suggest something and just FYI, it is better not to use loops in the construction of the JSON. Especially when this formula is used in a global function and called with API.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 days ago
1
Get help
Reported - view
Re: Change the color of Number text(field) depending from the value
@George Tanev In stead of using the styled() function, use some conditional html? You can display html in a formula field , so you can chose different styling/sizing to display your message...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
6 days ago
Get help
Reported - view
Re: Open Record in full view mode from table / view
@Christian Sennewald Yes, you see this error in the console. No worries, The newest Ninox CRM is also based on these global Window Objects.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
6 days ago
Get help
Reported - view
Re: BugReport: Cannot access ChildObject if it has same name as parent
I think the use of two times "result" for an object is not recommended.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
6 days ago
Get help
Reported - view
Re: Clear Relationship Field
my.(Location := 0)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 wk ago
Get help
Reported - view
Re: Click to url on emailed image within sendEmail
@Mel Charlesare you aware replace() function needs 3 values? : replace(string, string, string) https://docs.ninox.com/en/script/functions-overview/functions/replace
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 wk ago
Get help
Reported - view
Re: Click to url on emailed image within sendEmail
@Mel Charles I seem to know this code....
You can wrap your <img> tag between an anchor tag in your System_Settings table field xGoogle: <a href="WebsiteURL"><img........></a>
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 wk ago
Get help
Reported - view
Re: RoleGrabber – Tool DB for Cloud Developers
With @UweGroegor 's permission, I am sharing a link to the video recording in which Uwe presents this database. https://www.dropbox.com/scl/fi/1gmtmvpijqpmekmgcoxxd/RoleGrabberPresentation.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 wk ago
2
Learn & Share
Reported - view
Re: Dynamik Choice field
@Pascal P. can't you use: order by lower(Paper) ?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 wk ago
Get help
Reported - view
Re: Rename a report when printing
See this function: https://docs.ninox.com/en/script/functions-overview/functions/printandsaverecord Oh, BTW, One thing Ninox can't handle is punctuation in the filename
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 wk ago
1
Get help
Reported - view
Re: RoleGrabber – Tool DB for Cloud Developers
Danke Uwe, sehr nützliches Programm!
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 mth ago
Learn & Share
Reported - view
Re: announced v3.14 features
For those who missed the version 3.14 preview webinar on 29th October. Here's the recording on youtube: https://youtu.be/xqCBHxx4_Z0?si=cCU-jMQoygwxcIWg
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 mth ago
2
Learn & Share
Reported - view
Re: Duplicate a sub-table while omitting fields.
@Pascal P. Very strange only the first 'Quote lines' value is replaced by null. I tested@Fred 's suggested code and it works on my end. I'm using private cloud version.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 mth ago
Get help
Reported - view
Re: Dynamic Choice/Multi-Choice
@Fred said: I wish they could also be JSON based @Fred I believe this will be part of the upcoming 3.14 release.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 mth ago
1
Get help
Reported - view
Re: Using Ninox ChatGPT to create a search
You should make the variable 'notes' (no capitals) first so the code can recognize the variabele... let notes := NOTES; The field NOTES (with capitals) can then be changed...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 mth ago
Get help
Reported - view
Re: Dynamic printing and join tables
@Fred @Mel Charles In the Partner conference, Carbone also said that they will release an update that will allow the Carbone studio to be embedded in another program (read Ninox).…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 mth ago
2
Get help
Reported - view
Re: Open URL button w/URL parameters (ninox replacing characters)
Did you try the urlEncode() or the urlDecode() function?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 mths ago
Get help
Reported - view
Re: View from another database
Even more simple if you have a public cloud account, is to make a tableview in your Work L41 database of your table and share this view as html-table. In your other table you can use the code below…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 mths ago
4
Get help
Reported - view
Re: View from another database
You can do this with API in public cloud by displaying the view as a html table...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 mths ago
Get help
Reported - view
Re: Using the Filter option
You can use a trick by placing the column outside the right of the print template so this column would not be visible in the actual PDF. It’s sometimes hard to drag outside the page but with trial…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
2 mths ago
Get help
Reported - view
Re: Ninox 3.13 available
@Fred You probably mean version 3.12 where the bug had arisen. I was still working with version 3.11.8 (private cloud) until now. It appears that the bug was fixed in version 3.13 for me.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 mths ago
Learn & Share
Reported - view
1
2
3
4
5
61
Ninox-Website
Ninox-Documentation
Overview
Learn & Share
Get help
Webinars
View all topics