Skip to main content
Ninox-Homepage
Datenschutz
Kontakt
How to enable Javascript
Registrierung
Einloggen
Willkommen in der Ninox-Community
Suche nach allen Themen oder
stelle eine Frage
Tipps und Tricks
Hilfe erhalten
Servicestatus
Dokumentation
Setup
Datenbanken
Automatisierung
Mein Account
Administration
Lösungen
Webinare
Übersicht
Profil
Fred
Fred
Folgen
Beigetreten
Tue Nov 01 15:27:17 UTC 2022
125
posts
27
likes received
0
followers
Badges
Latest Posts
Re: Trigger bei Mehrfachauswahlfeld funktioniert nicht
If I understand you correctly: When you select a choice in 'A.H-Satz' then you want the text from the field 'H-Bezeichnung' from the record that was selected in the choice copied to 'A.Zus.H-Satz'.…
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Datensatz duplizieren mit duplicate - Problem mit Benutzerrechten
Sounds like something you should email Ninox directly.
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Untertabelle per Wordvorlage ausdrucken
Take a look at the Carbone documentation. Also you may want to consider using JSON data with your dynamic print layouts. While it may seem like extra work,…
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Eingabefeld bei dialog() einfügen ?
@Martin Langlotz You can also look at the Dashboard Template that@Sotirios created using HTML. Too many things to list here.
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Select Anweisung
There is no need to think of using table views when doing selects. You have access to all fields so just use fieldnames. select Tabelle_1 where fieldname1 = "Jurg"
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Neuer Datensatz (Untertabelle) per Button...
Since this is a sub Table then you want to link to the main table. So when you use 'this' you are referring to the main table record you are on. let me := this; let new := (create Positionen); new.…
Fred
Fred
vor 1 Jahr
Tipps und Tricks
Reported - view
Re: Filter auf Mitarbeiter
Can you post a sample DB with no personal information?
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: n:m | Ansicht mit Direktreferenz auf Child-Tabelle und Info aus der Brückentabelle
@Rainer Wülbeck You can replace the <tr> urlof line with: <tr onclick=ui.popupRecord('{ Actor.Id }')> And it will be a popup instead.
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: n:m | Ansicht mit Direktreferenz auf Child-Tabelle und Info aus der Brückentabelle
@Rainer Wülbeck I get it now. You are running into the issue that you lose access to the current record when you are in a view element. There is no way to reference the info from the Movie record in…
Attachment
Fred
Fred
vor 1 Jahr
1
Hilfe erhalten
Reported - view
Re: 🚀 Ninox 3.15 verfügbar
Thank you for putting the bug fix info into the release notes as well. I hope you keep doing it.
Fred
Fred
vor 1 Jahr
1
Tipps und Tricks
Reported - view
Re: n:m | Ansicht mit Direktreferenz auf Child-Tabelle und Info aus der Brückentabelle
@Rainer Wülbeck I'm not sure what you mean by: This is what I want: Direct opening of the Actors, but showing the correct rolle of the actual movie Since Besetzung is a child of Actors,…
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: n:m | Ansicht mit Direktreferenz auf Child-Tabelle und Info aus der Brückentabelle
can you provide a sample DB?
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Performance der Datenbank im Browser optimieren
Can you make a summary table of your raw data table? In the summary table you would have a record for each status, year, quarter, month, day of week, etc.…
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Dynamische Drucklayouts leer
Excuse the English. Have you looked into Carbone Studio? It has a free tier. Here is what I consider the best part of it.
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Format # Report ?
Hi@Rafael Sanchis - You can format it when you create your json like you do for vPres. or You can format in Carbone. Check out their number format section.
Fred
Fred
vor 1 Jahr
1
Hilfe erhalten
Reported - view
Re: Subtracting one record from another within the same table limited to a field
@Mike What is a subtable? Can you post a sample DB? or be more specific about the fields you want to use.
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Zeitdauer berechnen und Anzeigen
Ninox works in milliseconds when working with date and time. So if you want hours you divide the results by 3,600,000.
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Dynamische Pflichtfelder
Most things are possible. The easiest way is to take control of the data entry with a dashboard/page so you can do all error or mandatory checking before the data gets entered.
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Subtracting one record from another within the same table limited to a field
You can try: let me := this; 'spend' - last((select 'TableName' where Field1 = me.Field1 and number(_id) < number(me._id)orderby _id)).'spend'
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: multi dmulti array
@Mirko It was posted in the English side that if you do a select/record to get the data from the contents field then it will work. So something like: let xcontent := record(dmulti,1).…
Fred
Fred
vor 1 Jahr
Tipps und Tricks
Reported - view
Re: multi dmulti array
@Mirko I discovered that a new formula field with: text(dmultiJSON_4) does not work since the basis of the JSON array is not hard coded in the dmulti. If you put the string from the content field…
Fred
Fred
vor 1 Jahr
1
Tipps und Tricks
Reported - view
Re: Auswahltabelle wird leer
Sorry for the response in English, but I don't think a translater will do a good job. The column names you show are they regular data fields in Material or are they formula fields showing data from…
Fred
Fred
vor 1 Jahr
Hilfe erhalten
Reported - view
Re: Keine lokalen Backups mehr möglich - Starter Tarif
Hi@Pyromixer - Entschuldigen Sie das schlechte Deutsch. Sie können den Anweisungen unter dem folgenden Link folgen, um den Download über die MacOS-App durchzuführen.…
Fred
Fred
vor 1 Jahr
1
Hilfe erhalten
Reported - view
Re: Rechnen mit Daten
Das Datumsformat ist: date(number,number,number). let startDatum := date(2024,1,1); let endDatum := date(2024,12,31);
Fred
Fred
vor 1 Jahr
2
Hilfe erhalten
Reported - view
Re: Ninox Script - JavaScript Einschränkungen?
Google Translate: Ein Benutzer im englischen Forum hat eine Erweiterung erstellt, die die Verwendung von JavaScript in Ninox ermöglicht. Sehen Sie sich hier seinen Beitrag (auf Englisch) an.
Fred
Fred
vor 3 Jahren
Hilfe erhalten
Reported - view
1
2
3
4
5
Ninox-Homepage
Übersicht
Tipps und Tricks
Hilfe erhalten
Servicestatus
Dokumentation
Setup
Installierte Apps
Public Cloud
Private Cloud
On-Premises
Plugins
Datenbanken
Tabellen
Tabellen-Beziehungen
Felder und Elemente
Seiten
Ansichten
Import und Export
Module
Drucken
Vorlagen
Anwendungsbeispiele
Automatisierung
Performance
Scripting
Funktionen
API
Mein Account
Abonnements
Administration
Private Cloud Administration
Arbeitsbereiche managen
Nutzer managen
Zugriffsrechte
Backups und Speicher
Prozess-Monitor
Lösungen
Ninox E-Rechnung
Ninox HR
Ninox Onboarding
Ninox CRM
Alle Themen anzeigen