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
Solutions
Setup
Databases
Automation
My account
Administration
Webinars
Overview
Profile
Sotirios Zormpas
szormpas
Greece
507
197
2
Joined: Sun Nov 07 22:33:30 UTC 2021
Follow
My Posts
Latest Posts
Re: How do you create a Google map with multiple locations?
@Rafael sorry my fault, add ") at the end of the code.
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@Rafael I can not see the line 48
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@Rafael Hi, can you upload a screenshot?
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: Ninox data schema
@Jacques TUR Hi, Given that I'm not a programmer, I'm happy to help in any way. How can we donate to the project?
Sotirios Zormpas
szormpas
11 mths ago
Learn and share
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 This is a problem that I don't know how to work around, maybe if you sent an email to Ninox support they might have a solution.
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: How to disable Create Record button in reference
@John Halls Hi, maybe a new thread will be a nice idea!
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Hi, We should use the AMap.MarkerClusterer Plug-in but it is a bit complicated and I am not sure if I will be able to make it works.
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@Rafael Hi, if you want to center the map in Madrid then you should replace the Longitude and the latitude of the map's attribute 'center'. Just copy the following code: let x := (select Customers);…
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 said: If labels can be displayed like this, it would be more convenient. Done! I like this version a lot
Attachment
Sotirios Zormpas
szormpas
11 mths ago
1
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Hi, Done!
Attachment
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: How do you create a Google map with multiple locations?
@我是我的我 Hi, In the new version of the attached database, there is a marker on the map for each customer. let x := (select Customers); html("<!doctype html> <html lang='en'> <head> <meta…
Attachment
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
Re: Designing Dashboard or Home Screen
@Vermaji Hi, I hope you'll find some help into the following threads: Field alignment logic Why can't move these formula fields Fonts, Colors and Borders
Sotirios Zormpas
szormpas
11 mths ago
Get help
Reported - view
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
11 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
11 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
11 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
11 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
11 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
11 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
11 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
11 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
11 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
11 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
11 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
11 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
11 mths ago
Get help
Reported - view
1
12
13
14
15
16
21
Ninox-Website
Overview
Learn and share
Get help
Service status
Documentation
Solutions
Ninox E-Invoice
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