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
48
10
0
Beigetreten: 01 Nov 2022
Folgen
Meine Beiträge
Letzte Beiträge
Re: PDFs werden nicht mehr in Vorschau geöffnet 3.15.5
@Rafael Sanchis I stand corrected. That is the fastest that I've seen Ninox update all platforms.
Fred
Fred
vor 6 Tagen
Hilfe erhalten
Reported - view
Re: Trigger funktionieren nicht
@keoma I don't see what Ninox can do. They have made it clear where things are executed, so we need to work within those parameters.
Fred
Fred
vor 6 Tagen
Hilfe erhalten
Reported - view
Re: PDFs werden nicht mehr in Vorschau geöffnet 3.15.5
@Rafael Sanchis The apps have not been updated to 15.5 so it would make sense that they don't work. @Dirk PatzerI did notice the poor quality. Thanks for reporting it.
Fred
Fred
vor 6 Tagen
Hilfe erhalten
Reported - view
Re: Trigger funktionieren nicht
The reason why alert() does not work in triggers is that triggers are run server side in the web app. Check out the doc on execution. So the alert() does "work",…
Fred
Fred
vor 8 Tagen
Hilfe erhalten
Reported - view
Re: Feature Request Dynamische Auswahlfelder
Your second request is already available. dMC is sorted by a field called Text. (select Table2) order by Text dC is sorted by a field called Number. (select Table2) order by Number dC2 is sorted by…
Fred
Fred
vor 9 Tagen
Hilfe erhalten
Reported - view
Re: Organisation umfangreiches echart-Dashboard / -galerie
I've uploaded one way of dealing with such a large DB. Open the Dashboard table first and see how fast the charts load. Since your raw data is so large (over 300K),…
Attachment
Fred
Fred
vor 2 Wochen
Hilfe erhalten
Reported - view
Re: Organisation umfangreiches echart-Dashboard / -galerie
@Eichelfr wow, 300K+ records. Are you working in the public cloud or in the Mac App?
Fred
Fred
vor 2 Wochen
Hilfe erhalten
Reported - view
Re: Organisation umfangreiches echart-Dashboard / -galerie
Can you post a sample DB with no personal information? Also post a couple of datasets that you will need for your charts.
Fred
Fred
vor 3 Wochen
Hilfe erhalten
Reported - view
Re: Werte aus Auswahlfeld werden nicht korrekt berechnet
Try modifying Gesamtbetrag: let xVersandkosten := switch Versandkosten do case 1: 2.15 case 2: 3.15 case 4: 4.95 case 5: 0 end; number(Nettogesamt) + number(xVersandkosten) - number('Rabatt in Euro')
Fred
Fred
vor 3 Wochen
Hilfe erhalten
Reported - view
Re: Backup zerschießt Datenbank
My response is to only use dynamic choice fields as a UI element and never depend on it to store data. So I have a trigger after update on the dynamic choice field that creates/deletes records from a…
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Code mit ChatGPT schreiben?
Try the Ninox flavored ChatGPT. Thanks to@Jacques TUR . While better it is not perfect either. The best place to learn is here in the forums. :)
Fred
Fred
vor 1 Monat
Tipps und Tricks
Reported - view
Re: Gibt es in Ninox eine "Input()" -Möglichkeit?
@Sotirios Zormpas has some html examples, one being the ability to take input from the user. Check out his post.
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: openPage existiert nicht
If you can make a Page in your private DB then openPage() will work even when the auto-complete does not list it. I'm surprised that it hasn't been fixed since Pages came out in v3.10.
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: In einer Ansicht Daten aus zwei Tabellen anzeigen
If you don't have a new table then no, you can't in a Ninox view element. You would have to create an HTML table with JSON data, then you can mix data from anywhere.…
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: iPad keinen Zugriff auf Bearbeitungsmodus!!
click and hold on your DB, without opening it up. select reorganize, or the German equivalent. open the DB.
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Neuen Datensatz erstellen und mit Daten füllen.
@Jan Heine Try: let my := this; let myzae := cnt('Alle Messpunkte'); let neuds := (create 'Alle Messpunkte'); neuds.( 'Prüfbericht-Assistent' := my; Messwert := my.Zahl )
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Neuen Datensatz erstellen und mit Daten füllen.
Can you post your code?
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Eine Datenbank und Nutzer mit verschiedenen Lizenzen
@planox. pro The big differences are storage limits (1GB vs 2GB), record limits (50K vs 500K), and API/email limits. Otherwise functionally they are the same, well beside some minor UI stuff.…
Fred
Fred
vor 1 Monat
1
Hilfe erhalten
Reported - view
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 1 Monat
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
1
2
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