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
55
10
0
Beigetreten: Tue Nov 01 15:27:17 UTC 2022
Folgen
Meine Beiträge
Letzte Beiträge
Re: Eine Datenbank und Nutzer mit verschiedenen Lizenzen
Yes to all your questions. One thing off the top of my head is that you can set a background under Professional but not under starter so I guess the starter people will not see any background.…
Fred
Fred
vor 2 Monaten
Hilfe erhalten
Reported - view
Re: Suche funktioniert nicht
I have to confirm that I also can not search in a reference field. I can filter a column, but the search does not work.
Fred
Fred
vor 2 Monaten
2
Hilfe erhalten
Reported - view
Re: Dynam. Dokument mit json Formel drucken
Don't be afraid of your word template not looking like your final product. Here is what my template looks like: It actually scrolls across 3 pages. Here is what the end product is:…
Attachments
Fred
Fred
vor 2 Monaten
Hilfe erhalten
Reported - view
Re: Formel für ein Datumfeld einstellen
@Anke Mielke sorry, switch should be lower case. I didn't see my mistake. all Ninox commands are lower case.
Fred
Fred
vor 2 Monaten
Hilfe erhalten
Reported - view
Re: Formel für ein Datumfeld einstellen
Try: let xmonth := month(Geburtsdatum); let xday := day(Geburtsdatum); Switch true do case (xmonth = 3 and xday >= 21) or (xmonth = 4 and xday <= 19): "Aries" case (month = 4 and day >= 20) or (month…
Fred
Fred
vor 2 Monaten
Hilfe erhalten
Reported - view
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 2 Monaten
Hilfe erhalten
Reported - view
Re: Datensatz duplizieren mit duplicate - Problem mit Benutzerrechten
Sounds like something you should email Ninox directly.
Fred
Fred
vor 2 Monaten
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 3 Monaten
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 3 Monaten
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 3 Monaten
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 3 Monaten
Tipps und Tricks
Reported - view
Re: Filter auf Mitarbeiter
Can you post a sample DB with no personal information?
Fred
Fred
vor 3 Monaten
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 3 Monaten
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 3 Monaten
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 3 Monaten
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 3 Monaten
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 3 Monaten
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 3 Monaten
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 4 Monaten
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 4 Monaten
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 5 Monaten
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 5 Monaten
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 5 Monaten
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 5 Monaten
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 5 Monaten
Tipps und Tricks
Reported - view
1
2
3
Ninox-Homepage
Übersicht
Tipps und Tricks
Hilfe erhalten
Servicestatus
Dokumentation
Setup
Installierte Apps
Public Cloud
Private Cloud
On-Premises
Datenbanken
Tabellen
Tabellen-Beziehungen
Felder und Elemente
Seiten
Ansichten
Import und Export
Module
Drucken
Vorlagen
Anwendungsbeispiele
Automatisierung
Scripting
Funktionen
API
Mein Account
Abonnements
Administration
Arbeitsbereiche managen
Nutzer managen
Zugriffsrechte
Nutzungsübersicht
Prozess-Monitor
Lösungen
Ninox E-Rechnung
Ninox CRM
Alle Themen anzeigen