Angular UI Components Documentation
Angular Scheduler Component
The Scheduler component for Angular represents a widget displays a set of Appointments in Day, Week, Month, Timeline Day, Timeline Week and Timeline Month views.
1. Installation
The easiest way to get started with jQWidgets UI for Angular is to use the Angular CLI Tool. To scaffold your project structure, follow its installation instructions.npm install -g @angular/cli ng new jqwidgets-project cd jqwidgets-project
Install jQWidgets
jQWidgets Angular UI comes packaged with Angular CLI schematics to make creating Angular applications easier. Schematics are included with both @angular/cdk and jqwidgets-ng. Once you install the npm packages, they will be available through the Angular CLI.Angular CLI supports the addition of packages through the ng add command. The ng add command provides faster and more user-friendly package installation. To install the jQWidgets UI for Angular package, use ng add and add the name of the NPM package:
ng add jqwidgets-ng
Alternatively, you can use the standard installation (Manual Setup)
jQWidgets UI for Angular is distributed as jqwidgets-ng NPM package
- Download and install the package.
npm install jqwidgets-ng
- Adding CSS reference
The following CSS file is available in ../node_modules/jqwidgets-ng/ package folder. This can be referenced in [src/styles.css] using following code.@import 'jqwidgets-ng/jqwidgets/styles/jqx.base.css';
Another way to achieve the same is to edit the angular.json file and in the styles add the style."styles": [ "node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" ]
2. Add the HTML for jQWidgets component in src/app/app.component.html
app.component.html
<jqxScheduler [theme]="'fluent'" #schedulerReference
[date]="date" [width]="800" [height]="600" [source]="dataAdapter" [showLegend]="true" [view]="'weekView'"
[appointmentDataFields]="appointmentDataFields" [resources]="resources" [views]="views">
</jqxScheduler>
3. Setup Component Logic
app.component.ts
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { jqxSchedulerModule, jqxSchedulerComponent } from 'jqwidgets-ng/jqxscheduler';
@Component({
selector: 'app-root',
imports: [jqxSchedulerModule],
standalone: true,
templateUrl: './app.component.html'
})
export class AppComponent implements AfterViewInit {
@ViewChild('schedulerReference') scheduler: jqxSchedulerComponent;
ngAfterViewInit(): void {
this.scheduler.ensureAppointmentVisible('id1');
}
getWidth(): any {
if (document.body.offsetWidth < 850) {
return '90%';
}
return 850;
}
generateAppointments(): any {
let appointments = new Array();
let appointment1 = {
id: "id1",
description: "George brings projector for presentations.",
location: "",
subject: "Quarterly Project Review Meeting",
calendar: "Room 1",
start: new Date(2025, 10, 23, 9, 0, 0),
end: new Date(2025, 10, 23, 16, 0, 0)
};
let appointment2 = {
id: "id2",
description: "",
location: "",
subject: "IT Group Mtg.",
calendar: "Room 2",
start: new Date(2025, 10, 24, 10, 0, 0),
end: new Date(2025, 10, 24, 15, 0, 0)
};
let appointment3 = {
id: "id3",
description: "",
location: "",
subject: "Course Social Media",
calendar: "Room 3",
start: new Date(2025, 10, 27, 11, 0, 0),
end: new Date(2025, 10, 27, 13, 0, 0)
};
let appointment4 = {
id: "id4",
description: "",
location: "",
subject: "New Projects Planning",
calendar: "Room 2",
start: new Date(2025, 10, 23, 16, 0, 0),
end: new Date(2025, 10, 23, 18, 0, 0)
};
let appointment5 = {
id: "id5",
description: "",
location: "",
subject: "Interview with James",
calendar: "Room 1",
start: new Date(2025, 10, 25, 15, 0, 0),
end: new Date(2025, 10, 25, 17, 0, 0)
};
let appointment6 = {
id: "id6",
description: "",
location: "",
subject: "Interview with Nancy",
calendar: "Room 4",
start: new Date(2025, 10, 26, 14, 0, 0),
end: new Date(2025, 10, 26, 16, 0, 0)
};
appointments.push(appointment1);
appointments.push(appointment2);
appointments.push(appointment3);
appointments.push(appointment4);
appointments.push(appointment5);
appointments.push(appointment6);
return appointments;
};
source: any =
{
dataType: "array",
dataFields: [
{ name: 'id', type: 'string' },
{ name: 'description', type: 'string' },
{ name: 'location', type: 'string' },
{ name: 'subject', type: 'string' },
{ name: 'calendar', type: 'string' },
{ name: 'start', type: 'date' },
{ name: 'end', type: 'date' }
],
id: 'id',
localData: this.generateAppointments()
};
dataAdapter: any = new jqx.dataAdapter(this.source);
date: any = new jqx.date(2016, 11, 23);
appointmentDataFields: any =
{
from: "start",
to: "end",
id: "id",
description: "description",
location: "location",
subject: "subject",
resourceId: "calendar"
};
resources: any =
{
colorScheme: "scheme05",
dataField: "calendar",
source: new jqx.dataAdapter(this.source)
};
views: any[] =
[
'dayView',
'weekView',
'monthView'
];
}