Skip to content

Commit 624d602

Browse files
committed
up
1 parent f98b93a commit 624d602

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

fileupload/buttonsrendering/src/app/app.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { Component } from '@angular/core';
22

3+
import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons';
34
import { jqxFileUploadModule, jqxFileUploadComponent } from 'jqwidgets-ng/jqxfileupload';
5+
46
@Component({
57
selector: 'app-root',
6-
imports: [jqxFileUploadModule],
8+
imports: [jqxFileUploadModule, jqxButtonModule],
79
standalone: true,
810
templateUrl: './app.component.html'
911
})
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
import { Component } from '@angular/core';
22

3+
import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons';
34
import { jqxFileUploadModule, jqxFileUploadComponent } from 'jqwidgets-ng/jqxfileupload';
5+
46
@Component({
57
selector: 'app-root',
6-
imports: [jqxFileUploadModule],
8+
imports: [jqxFileUploadModule, jqxButtonModule],
79
standalone: true,
810
templateUrl: './app.component.html'
911
})
1012

13+
1114
export class AppComponent {
1215

1316
}

fileupload/events/src/app/app.component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
import { Component, ViewChild } from '@angular/core';
22

33
import { jqxPanelModule, jqxPanelComponent } from 'jqwidgets-ng/jqxpanel';
4+
import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons';
45
import { jqxFileUploadModule, jqxFileUploadComponent } from 'jqwidgets-ng/jqxfileupload';
6+
57
@Component({
68
selector: 'app-root',
7-
imports: [jqxPanelModule, jqxFileUploadModule],
9+
imports: [jqxFileUploadModule, jqxPanelModule, jqxButtonModule],
810
standalone: true,
911
templateUrl: './app.component.html'
1012
})
1113

14+
1215
export class AppComponent {
1316
@ViewChild('myPanel') myPanel: jqxPanelComponent;
1417

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
import { Component } from '@angular/core';
1+
import { Component, ViewChild } from '@angular/core';
22

3+
import { jqxPanelModule, jqxPanelComponent } from 'jqwidgets-ng/jqxpanel';
4+
import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons';
35
import { jqxFileUploadModule, jqxFileUploadComponent } from 'jqwidgets-ng/jqxfileupload';
6+
47
@Component({
58
selector: 'app-root',
6-
imports: [jqxFileUploadModule],
9+
imports: [jqxFileUploadModule, jqxPanelModule, jqxButtonModule],
710
standalone: true,
811
templateUrl: './app.component.html'
912
})
1013

14+
1115
export class AppComponent {
1216

1317
}

fileupload/selectedfilesrendering/src/app/app.component.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
import { Component } from '@angular/core';
1+
import { Component, ViewChild } from '@angular/core';
22

3+
import { jqxPanelModule, jqxPanelComponent } from 'jqwidgets-ng/jqxpanel';
4+
import { jqxButtonModule } from 'jqwidgets-ng/jqxbuttons';
35
import { jqxFileUploadModule, jqxFileUploadComponent } from 'jqwidgets-ng/jqxfileupload';
6+
47
@Component({
58
selector: 'app-root',
6-
imports: [jqxFileUploadModule],
9+
imports: [jqxFileUploadModule, jqxPanelModule, jqxButtonModule],
710
standalone: true,
811
templateUrl: './app.component.html'
912
})
1013

14+
1115
export class AppComponent {
1216
imageTypes: string[] = ['.gif', '.jpg', '.png'];
1317

0 commit comments

Comments
 (0)