DevExpress Scheduler testweise eingebaut. Musste die web.config anpassen und die Skripte, deshalb hab ich das nicht einfach auskommentiert. Fat-Client: Kalender: mehrere Termine, die zum löschen ausgewählt sind, werden jetzt auf einmal gelöscht, nicht mehr hintereinander. BetreuWoReports: Klienten sind nach Namen sortiert. Klienten, für die der ausgewählte Mitarbeiter/Team Stunden geleistet hat, werden alle angezeigt. Auch die, die nicht vom Mitarbeiter/Team betreut werden.
Basic Globalize Compiler example
This example focuses on the Globalize Compiler and the Globalize runtime modules. It assumes knowledge of Globalize usage basics.
Requirements
1. Install Globalize dependencies and Globalize Compiler
This example uses npm to download Globalize dependencies (i.e., CLDR data and
the Cldrjs library) and the Globalize Compiler.
npm install
Running the example
Development mode
- Start a server by running
python -m SimpleHTTPServeror other alternative servers such as http-server, nginx, apache. - Point your browser at
http://localhost:8000/development.html. Note that the formatters are created dynamically. Therefore, Cldrjs and CLDR data are required. - Understand the demo by reading the source code. We have comments there for you.
Production mode
- Compile the application formatters by running
npm run build. Seepackage.jsonto understand the actual shell command that is used. For more information about the compiler, see the Globalize Compiler documentation. - Point your browser at
./production.html. Note that we don't need Cldrjs nor CLDR data in production here. - Understand the demo by reading the source code. We have comments there for you.