Files
TaskFlow/app
Developer01 04d9aac24f Navigation auf TreeList umgestellt, Monitor-Layout refactored
- NavBarControl entfernt, Navigation erfolgt jetzt über TreeList_Cockpit mit modernem Design und Rechteprüfung (Monitor/Charts).
- TreeList lädt Cockpit-Struktur aus DB, blendet Knoten je nach Berechtigung aus und zeigt mehrsprachige Fehler bei fehlender Konfiguration.
- Klick auf Monitor- oder Chart-Knoten öffnet gezielt Monitor/Dashboard mit passender Konfiguration.
- Methoden zum Laden/Speichern/Entfernen von Monitor-Grid-Layouts vereinheitlicht und auf Cockpit-spezifische Layout-Dateien umgestellt.
- TreeList-Breite und Splitter-Positionen werden benutzerspezifisch gespeichert.
- Neuer Refresh-Button für TreeList im Ribbon ergänzt.
- Diverse Refactorings, Logging- und Fehlerbehandlungs-Verbesserungen.
2026-05-13 14:23:24 +02:00
..
2022-11-29 09:06:06 +01:00
2020-02-03 15:01:36 +01:00
2026-05-05 18:21:54 +02:00
2026-05-05 18:21:54 +02:00
2026-01-28 21:47:49 +01:00
2026-01-28 21:47:49 +01:00

Here's the improved README.md file incorporating the new content while maintaining the existing structure and coherence:

Project Title

Overview

Provide a brief description of the project, its purpose, and its main features.

Installation

Instructions on how to install and set up the project.

Usage

How to use the project, including code examples and explanations.

DataColumn.Expression (Formelsprachen-Übersicht)

Die dynamischen Grid-Formeln verwenden die ADO.NET DataColumn.Expression-Sprache. Spalten werden immer über den Spaltennamen referenziert (in eckigen Klammern).

Grundoperatoren

Typ Ausdruck Beispiel
Arithmetik + - * / [A] * [B]
Vergleich = <> > >= < <= [MENGE] > 0
Logik AND OR NOT [A] > 0 AND [B] < 10
Klammern (...) ([A] + [B]) * 2

String-Verkettung

Ausdruck Beispiel
+ [VORNAME] + ' - ' + [NACHNAME]
Convert Convert([NUMMER], 'System.String')

Bedingungen

Ausdruck Beispiel
IIF IIF([A] = 'Harry', 'Blume', 'Tier')

Häufige Funktionen

Funktion Beispiel
Len Len([TEXT])
Trim Trim([TEXT])
Substring Substring([TEXT], 0, 3)
IsNull IsNull([WERT], 0)
Convert Convert([WERT], 'System.Double')

Beispiele (FORMULA_EXPRESSION)

  • Multiplikation: [MENGE] * [PREIS]
  • Addieren: [A] + [B]
  • Division: [A] / [B]
  • Text zusammensetzen: [SAKNR] + ' - ' + [KST]
  • Bedingung: IIF([STATUS] = 'X', 'OK', 'NOK')

Contributing

Guidelines for contributing to the project.

License

Information about the project's license.

Contact

How to contact the project maintainers for questions or support.

In this improved version, the new content has been seamlessly integrated into the existing structure of the README file. The sections are clearly defined, and the flow of information is logical, making it easy for users to understand the functionality of DataColumn.Expression and how to use it effectively.