-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jQWidgets v14.0.0 Release, May-01-2022 What's New: - jqxGrid command column. - Barcode component. - QRcode component. What's Improved: - Light theme is updated with more modern look and feel. What's Fixed: - Fixed an issue in jqxDataTable. 2nd level nested table disappears. - Fixed an issue in jqxSlider - the "created" event does not fire. - Fixed an issue in jqxNumberInput - spin buttons unexpected behavior. When decimalDigits and digits properties are set to 2 and the spin buttons are enabled with spinButtonsStep=0.1, the buttons don't work. - Fixed an issue in jqxGrid - card view mode - cards change position during scroll - Fixed an issue in jqxGrid - card view mode - cards are not fully displayed but there is no scrollbar - Fixed an issue in jqxGrid - rowsheight is not preserved when you switch to cardview mode and then back to grid mode - Fixed an issue in jqxGrid issue when used within a jqxSplitter component - Fixed an issue in jqxGrid bug when having pinned columns doesn't scroll on the next column on key press
- Loading branch information
Showing
228 changed files
with
3,658 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title id='Description'>Angular BarCode Basic</title> | ||
<base href="./../dist/barcode/basic/"> | ||
<meta name="description" content="This is an example of the default functionalities in Angular BarCode." /> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="/node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" type="text/css" /> | ||
|
||
<!-- jQWidgets --> | ||
<script src="./../../../scripts/demos.js"></script> | ||
|
||
</head> | ||
|
||
|
||
<!-- Display the application --> | ||
<body> | ||
|
||
<div class="example-description"> | ||
Angular BarCode Example. | ||
</div> | ||
|
||
<app-root>Loading...</app-root> | ||
|
||
<script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule></script><script src="polyfills-es5.js" nomodule></script><script src="main-es2015.js" type="module"></script><script src="main-es5.js" nomodule></script> | ||
|
||
</body> | ||
</html> |
37 changes: 37 additions & 0 deletions
37
demos/Angular/angular-barcode/angular-barcode-defaultfunctionality.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title id='Description'>Angular Barcode Default Functionality</title> | ||
<base href="./../dist/barcode/defaultfunctionality/"> | ||
<meta name="description" content="This is an example of the default functionalities in Angular Barcode." /> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="/node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" type="text/css" /> | ||
|
||
<!-- jQWidgets --> | ||
<script src="./../../../scripts/demos.js"></script> | ||
<style> | ||
body, | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
padding: 0; | ||
margin: 0; | ||
font-size: 14px; | ||
font-family: Roboto; | ||
} | ||
</style> | ||
</head> | ||
|
||
|
||
<!-- Display the application --> | ||
<body> | ||
|
||
<app-root>Loading...</app-root> | ||
|
||
<script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule></script><script src="polyfills-es5.js" nomodule></script><script src="main-es2015.js" type="module"></script><script src="main-es5.js" nomodule></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title id='Description'>Angular BarCode Export</title> | ||
<base href="./../dist/barcode/export/"> | ||
<meta name="description" content="This is an example of the export in Angular BarCode." /> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="/node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" type="text/css" /> | ||
|
||
<!-- jQWidgets --> | ||
<script src="./../../../scripts/demos.js"></script> | ||
|
||
</head> | ||
|
||
|
||
<!-- Display the application --> | ||
<body> | ||
|
||
<div class="example-description"> | ||
Barcode Export | ||
</div> | ||
|
||
<app-root>Loading...</app-root> | ||
|
||
<script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule></script><script src="polyfills-es5.js" nomodule></script><script src="main-es2015.js" type="module"></script><script src="main-es5.js" nomodule></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title id='Description'>Angular Grid Command Column</title> | ||
<base href="./../dist/grid/commandcolumn/"> | ||
<meta name="description" content="This is an example of Angular Grid's Command Column." /> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="./../../../node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" type="text/css" /> | ||
|
||
<!-- jQWidgets --> | ||
<script src="./../../../scripts/demos.js"></script> | ||
|
||
</head> | ||
|
||
|
||
<!-- Display the application --> | ||
<body> | ||
|
||
|
||
<app-root>Loading...</app-root> | ||
|
||
<script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule></script><script src="polyfills-es5.js" nomodule></script><script src="main-es2015.js" type="module"></script><script src="main-es5.js" nomodule></script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title id='Description'>Angular QRcode Basic</title> | ||
<base href="./../dist/qrcode/basic/"> | ||
<meta name="description" content="This is an example of the default functionalities in Angular QRcode." /> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="/node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" type="text/css" /> | ||
|
||
<!-- jQWidgets --> | ||
<script src="./../../../scripts/demos.js"></script> | ||
|
||
</head> | ||
|
||
|
||
<!-- Display the application --> | ||
<body> | ||
|
||
<div class="example-description"> | ||
Angular QRcode Example. | ||
</div> | ||
|
||
<app-root>Loading...</app-root> | ||
|
||
<script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule></script><script src="polyfills-es5.js" nomodule></script><script src="main-es2015.js" type="module"></script><script src="main-es5.js" nomodule></script> | ||
|
||
</body> | ||
</html> |
37 changes: 37 additions & 0 deletions
37
demos/Angular/angular-qrcode/angular-qrcode-defaultfunctionality.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title id='Description'>Angular QRcode Default Functionality</title> | ||
<base href="./../dist/qrcode/defaultfunctionality/"> | ||
<meta name="description" content="This is an example of the default functionalities in Angular QRcode." /> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="/node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" type="text/css" /> | ||
|
||
<!-- jQWidgets --> | ||
<script src="./../../../scripts/demos.js"></script> | ||
<style> | ||
body, | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
padding: 0; | ||
margin: 0; | ||
font-size: 14px; | ||
font-family: Roboto; | ||
} | ||
</style> | ||
</head> | ||
|
||
|
||
<!-- Display the application --> | ||
<body> | ||
|
||
<app-root>Loading...</app-root> | ||
|
||
<script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule></script><script src="polyfills-es5.js" nomodule></script><script src="main-es2015.js" type="module"></script><script src="main-es5.js" nomodule></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title id='Description'>Angular QRcode Export</title> | ||
<base href="./../dist/qrcode/export/"> | ||
<meta name="description" content="This is an example of the export in Angular QRcode." /> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
|
||
<!-- Styles --> | ||
<link rel="stylesheet" href="/node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" type="text/css" /> | ||
|
||
<!-- jQWidgets --> | ||
<script src="./../../../scripts/demos.js"></script> | ||
|
||
</head> | ||
|
||
|
||
<!-- Display the application --> | ||
<body> | ||
|
||
<div class="example-description"> | ||
QRcode Export | ||
</div> | ||
|
||
<app-root>Loading...</app-root> | ||
|
||
<script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule></script><script src="polyfills-es5.js" nomodule></script><script src="main-es2015.js" type="module"></script><script src="main-es5.js" nomodule></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<jqxBarcode #barcode [value]="'A5600B'"> | ||
</jqxBarcode> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Component, ViewChild, ElementRef, ViewEncapsulation } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-root', | ||
templateUrl: './app.component.html', | ||
encapsulation: ViewEncapsulation.None | ||
|
||
}) | ||
|
||
export class AppComponent { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
import { AppComponent } from './app.component'; | ||
import { jqxBarcodeModule } from 'jqwidgets-ng/jqxbarcode'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
AppComponent | ||
], | ||
imports: [ | ||
BrowserModule, CommonModule, jqxBarcodeModule | ||
], | ||
providers: [], | ||
bootstrap: [AppComponent] | ||
}) | ||
|
||
export class AppModule { } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
import { enableProdMode } from '@angular/core'; | ||
import { AppModule } from './app.module'; | ||
|
||
enableProdMode(); | ||
platformBrowserDynamic().bootstrapModule(AppModule); |
Oops, something went wrong.