Contact Sales to request a demo
Request demo
Product
Platforms
Templates
Security
Customer Reviews
Product Updates
Solutions
Success Stories
Partners
Partners
Become Our Partner
Pricing
Support
Help Center
Webinars
Hero Webinar
Manual
Forum
Tutorial Videos
Blog
Contact us
Search
How to enable Javascript
Sign Up
Log in
Support
Forum
Home
Search the community
Home
Learn & Share
Get help
Webinars
Knowledge Base
Latest Activity
Contact Us
Privacy
Home
Latest Posts
Re: Order by descending
If anyone wants an example of my workaround, let me know
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
Get help
Reported - view
Re: Order by descending
Thanks Fred, Your example solves a different usecase. At least I think. The outcome of this will result in a list of field1 that are sorted in decending order.…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
Get help
Reported - view
Re: Improving this forum
Other really useful feature would be to be able to * Have a personal list of your own posts or posts you've participated in to be able to see if there are answers and continue conversation (not all…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
Learn & Share
Reported - view
Re: Order by descending
Thanks Maria, rsort(array) - sorts an array in descending order Im not sure how to specify which field i want to sort on. The records are complex types with multiple fields and I might want to sort…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
Get help
Reported - view
Re: Roles on owner
Nice workaround, John. But I cant use that in the table allow to read/ allow to write / create new records / delete records drop downs. jesper
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
Get help
Reported - view
Improving this forum
Hi all, I think it would improve the quality of this forum if it was possible for members to report a post a spam (any posts having x spam reports should be removed automatically).…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
3
replies
337
Learn & Share
Re: Markdown field type
I've made an example that shows how nice it can work with ninox using a choise field, a text (multi) and a formular. The formular renders html + javascript and uses https://marked.js.…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
Learn & Share
Reported - view
Comments and messaging
We are using Ninox for project collaboration and we have thought about implementing a comment setup like this: https://www.loom.com/share/b53444f9164144b3ac29791e610e2765 The build in comments are…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
341
Learn & Share
Order by descending
When selecting records you can't specify descending?
Jesper Ordrup
UMAKERS
Jesper_Ordrup
updated
9 mths ago
38
replies
2,519
1
Get help
Functions to have complex parameters
In addition to the simple types it would be very useful if you could pass records and record collections as a parameters. This would make functions way more accessable and powerful.
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
1
reply
304
1
Learn & Share
Re: Markdown field type
I can implement it myself with a text multi field and a formular to render but it would be great to have this build in.
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
Learn & Share
Reported - view
Markdown field type
The markdown format is becoming very popular and for good reasons. Its very easy to understand and really powerful. https://www.markdownguide.org/getting-started/
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
4
replies
470
Learn & Share
How do I change email on my own profile?
Thx Jesper
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
1
reply
263
Get help
Function parameters - which types are possible
I've found this old post https://ninox.com/en/forum/technical-help-5ab8fe445fe2b42b7dd39ee7/types-of-parameters-for-a-private-function-5c0962c08d9fa6683abafc7d And not really any docs on the topic.…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
46
replies
855
Get help
Roles on owner
Is it not possible to assign the owner user roles? thx jesper
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
3
replies
364
Get help
Roles dissapearing
I created a user and added a new role "allow-delete". I then proceeded to our tables and added the role restriction. All worked fine. I then deleted the user and wanted to add the role to other users.…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
213
Get help
Feature request: scripting Record comments
Can we get access to record comments from script? Let comments = comments(this); And may even create comments
Jesper Ordrup
UMAKERS
Jesper_Ordrup
1 yr ago
362
Learn & Share
Re: Where can I find a list of the functions used in Ninox ?
Is this something that will be public avail or can I get an invitation for this db? thx Jesper
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
Get help
Reported - view
Re: Where is documentation for formular functions and features?
Update: I found openfullscreen here https://ninox.com/en/manual/calculations/reference-of-functions-and-language - it just doesnt show up when searching forum https://ninox.…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
Get help
Reported - view
Re: How do you find if a value is present in a table ref
Thanks Jacques - that was much faster :-)
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
Get help
Reported - view
Where is documentation for formular functions and features?
I've been reading the online manual and the pdf version. Both covers formulas - but not in depth. * Where do I find a complete description of build in functions and global system variables (if any)?…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
1
reply
374
Get help
Re: How do you find if a value is present in a table ref
I found a solution. Please let me know if this is the optimal: let ret := false;for contact in Customers.Contacts.access do if contact.User = user() then ret := true endend;ret Thank you Jesper
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
Get help
Reported - view
Re: How do you find if a value is present in a table ref
As I understand it the select is doing a table lookup unlrelated to the current so in the example I made here it would also require adding a relation to which customer I need contacts from.…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
Get help
Reported - view
Re: How do you find if a value is present in a table ref
To elaborate further. The idea is to be able to show if the current user is related to the customer. TablesCustomers Contacts - relates to Customers. Contains a field "access" that is of type "user".…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
Get help
Reported - view
How do you find if a value is present in a table ref
I have a table Customers with a 1-n relation to contacts. The contact table contains the user field access. How can I check if current user is one of the contacts defined in customers.contacts.…
Jesper Ordrup
UMAKERS
Jesper_Ordrup
2 yrs ago
5
replies
555
Get help
Jesper Ordrup
Jesper_Ordrup
UMAKERS
25
2
0
Joined: 11 Jan 2021
Follow
Home
Learn & Share
Get help
Webinars
View all topics
Tags