Skip to main content
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
Setup
Databases
Automation
My account
Administration
Webinars
Overview
Profile
Sotirios Zormpas
szormpas
Greece
470
180
2
Joined: Sun Nov 07 22:33:30 UTC 2021
Follow
My Posts
Latest Posts
Re: How to disable Create Record button in reference
@Vermaji Hi, While I agree with many of your comments, allow me to play devil's advocate! Ninox started out as an online database, so it makes sense that it has put more effort into developing its…
Sotirios Zormpas
szormpas
7 mths ago
1
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Hi, I am attaching a sample database where you can choose and save your location into the 'My Location' field which then it automatically diplayed on the map below.…
Attachment
Sotirios Zormpas
szormpas
7 mths ago
1
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 said: For example, moving the red dot to the desired location and clicking a button to write the latitude and longitude information into a Ninox text field.…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Hi, if you want to add Point marks into your map then you can try something like this: html("<!doctype html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible'…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Hi, I managed to make a working example, can you insert the following code inside a function field? html("<!doctype html> <html lang='en'> <head> <meta charset='utf-8'> <meta…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: The multiplication function stopped working
@iliper LTD Hi, Styling a value by using the styled() function converts it to the data type styled that you can not convert back to a number.
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Also you should add a div above the script: <div id="container"></div>
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: Color field to change the text color and the backround for the formula field.
@iliper LTD Hi, If you want the formula field to display the value of a number field then use this: html("<p style='color:" + Color + "'>" + Number + "</p>") In the code above replace the 'Number'…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: Color field to change the text color and the backround for the formula field.
@iliper LTD Hi, I do not know how to alter directly the style of the formula field based on color field value but you can have similar results via html(): html("<p style='color:…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 I think you should replace 'YOUR_API_KEY' above with the your real key.
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Hi, you can make your database easily. You will only need a Google Cloud API key (I can not share mine). Have you got yours? For the implementation, you will use two fields,…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: Automatic Calculating an end date based on new records
@jesusfreakk_alex Hi, You can achive this directly from the trigger by modifing your code as below: let i := this; let previousStatus := last(select 'History of Status' where 'Cow table' = i);…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: How to disable Create Record button in reference
@Vermaji Hi, As @Mel Charles mentioned, there are usually alternative ways to achieve a desired result. Since we can not change the visibility of a field directly via script,…
Attachment
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: Sharing DB ISSUES
@amber Hi, Can you tell us more about the structure of your database, can you give us a sample of it? What kind of issues are you facing that are frustrating you,…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: About the issue of allowing edits only when conditions are met…”
@我是我的我 Hi, as @Fred suggested and @John Halls mentioned, there is a simpler way. Open the Gear icon of the 'Customers' table then click on 'Edit fields...…
Sotirios Zormpas
szormpas
7 mths ago
1
Get help
Reported - view
Re: Field labels in RED color
@Sean hi, also I like it. A practical way to give emphasis on one or more input fields. Thank you
Sotirios Zormpas
szormpas
7 mths ago
1
Get help
Reported - view
Re: Field labels in RED color
@Mel Charles you are right, the above code is applied indiscriminately to all fields on the current page, even in the pop-up window of each field's formatting options.…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: Field labels in RED color
@Sean thanks, the .nx-input__input is working inconsistently in my setup, but the code below is giving me the best results: html(" <style> .nx-input { color: yellow; background-color: red; } .…
Sotirios Zormpas
szormpas
7 mths ago
1
Get help
Reported - view
Re: Field labels in RED color
@Sean Hi, html(" <style> .component.editor.editor-string input { color: yellow; background-color: red; } </style> ") Playing around, I discovered that I could use the code above to modify the text…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: selecting rows on a table using header column filter
@Jose Monteiro glad it works for you. Could you please mark the post as answered, thanks.
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: selecting rows on a table using header column filter
@Jose Monteiro , I have tested it, and it works for me. Have you put the above condition into the Filter box and omit the "MAG" name? See the screenshot below.
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: selecting rows on a table using header column filter
Hi @Jose Monteiro , can you try the following: !=null
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: Field labels in RED color
@Sean I see…excellent. Thank you for clarifying this
Sotirios Zormpas
szormpas
7 mths ago
1
Get help
Reported - view
Re: Field labels in RED color
@Vermaji , I have post a new topic: How to insert Line Dividers into a page or table form
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
Re: Field labels in RED color
@Sean this is really awesome! Thanks
What is not obvious to me is how I choose the field to which I want to apply the new settings. For example, in your demo database,…
Sotirios Zormpas
szormpas
7 mths ago
Get help
Reported - view
1
11
12
13
14
15
19
Ninox-Website
Overview
Learn and share
Get help
Service status
Documentation
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
Scripting
Functions
API
My account
Subscriptions
Administration
Manage workspaces
Manage collaborators
Access permissions
Usage overview
Process monitor
View all topics