@syncfusion/ej2-angular-grids 19.3.43 → 19.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +48 -0
- package/dist/ej2-angular-grids.umd.js +1 -1
- package/dist/ej2-angular-grids.umd.min.js +1 -1
- package/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap4.css +5 -0
- package/styles/bootstrap5-dark.css +10 -5
- package/styles/bootstrap5.css +10 -5
- package/styles/excel-filter/bootstrap4.css +5 -0
- package/styles/excel-filter/bootstrap5-dark.css +5 -0
- package/styles/excel-filter/bootstrap5.css +5 -0
- package/styles/grid/bootstrap4.css +5 -0
- package/styles/grid/bootstrap5-dark.css +10 -5
- package/styles/grid/bootstrap5.css +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,54 @@
|
|
|
4
4
|
|
|
5
5
|
### Grid
|
|
6
6
|
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I345516` - Grid sort icon overlapping with column header text in `boostrap5` theme issue has been fixed.
|
|
10
|
+
- `#I341348` - Provided the support for clearing all the Grid actions.
|
|
11
|
+
- `#I344299` - Grid data is not loaded when using custom binding with `Infinitescrolling` is fixed.
|
|
12
|
+
- `#F167378` - Throws scripts error while apply sorting in load event with `Infinitescrolling` is resolved.
|
|
13
|
+
- `#I345190` - Date column filtering operator issue has been fixed.
|
|
14
|
+
|
|
15
|
+
## 19.3.46 (2021-10-19)
|
|
16
|
+
|
|
17
|
+
### Grid
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- `#I343873` - Infinite Scroll spinner issue while loading next block is fixed.
|
|
22
|
+
- `#I344229` - Script error while searching in the infinite scrolling enabled is resolved.
|
|
23
|
+
- `#I344295` - Infinite scroll grid is duplicating the last row issue has been fixed.
|
|
24
|
+
- `#FB21743` - Grouping collapse is not working properly with Infinite scroll if it don't have aggregates issue has been fixed.
|
|
25
|
+
|
|
26
|
+
## 19.3.45 (2021-10-12)
|
|
27
|
+
|
|
28
|
+
### Grid
|
|
29
|
+
|
|
30
|
+
#### Bug Fixes
|
|
31
|
+
|
|
32
|
+
- `#I339088` - Export the Grouped first column becomes empty is resolved.
|
|
33
|
+
- `#FB27888` - Cell Edit Template is not working when using dropdown component with filtering is fixed.
|
|
34
|
+
- `#I338678` - Frozen horizontal scroll is not working in `Ipad` device has been fixed.
|
|
35
|
+
- `#I342380` - Command button click event argument missing issue has been fixed.
|
|
36
|
+
|
|
37
|
+
## 19.3.44 (2021-10-05)
|
|
38
|
+
|
|
39
|
+
### Grid
|
|
40
|
+
|
|
41
|
+
#### Bug Fixes
|
|
42
|
+
|
|
43
|
+
- `#I341591` - Grid column `virtualization` does not support dynamic column changes issue has been fixed.
|
|
44
|
+
- `#I330797` - Provided support to set height and width for image when pdf export.
|
|
45
|
+
- `#I341546`, `#I341928` - custom date format filter issue in Excel search box has been fixed.
|
|
46
|
+
- `#I341353` - `No Records To Display` message is split while grouping has been fixed.
|
|
47
|
+
- `#I341339` - Editing issue in `foreignKeyColumn` with `virtualization` has been fixed.
|
|
48
|
+
- `#I342311` - Hierarchy Grid sends request for `childGrid` data when `hierarchyExportMode` as none is resolved.
|
|
49
|
+
- `#I341591` - Aggregate rendering condition order impact the grid performance issue has been fixed.
|
|
50
|
+
|
|
51
|
+
## 19.3.43 (2021-09-30)
|
|
52
|
+
|
|
53
|
+
### Grid
|
|
54
|
+
|
|
7
55
|
#### New Features
|
|
8
56
|
|
|
9
57
|
- `#I284744`, `#I289234` - Provided keyboard navigation support for infinite scroll.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.umd.js
|
|
3
|
-
* version : 19.3.
|
|
3
|
+
* version : 19.3.47
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.umd.min.js
|
|
3
|
-
* version : 19.3.
|
|
3
|
+
* version : 19.3.47
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-grids@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-grids@
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-grids@19.3.46",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-V/tucM4MoS3+FUdtrj3EssGqDopS07LO0Kr4VxpSykPKMbdTHiDKoQ33h7z1h0BGAho9LgGp55tuXYWX96wUEg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-grids",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-angular-grids/-/ej2-angular-grids-19.3.46.tgz",
|
|
23
|
+
"_shasum": "bad9cf63e9572415970731b2c8242458f2c96443",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-grids@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~19.3.
|
|
35
|
-
"@syncfusion/ej2-base": "~19.3.
|
|
36
|
-
"@syncfusion/ej2-grids": "19.3.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~19.3.47",
|
|
35
|
+
"@syncfusion/ej2-base": "~19.3.47",
|
|
36
|
+
"@syncfusion/ej2-grids": "19.3.47"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"schematics": "./schematics/collection.json",
|
|
70
70
|
"sideEffects": false,
|
|
71
71
|
"typings": "ej2-angular-grids.d.ts",
|
|
72
|
-
"version": "19.3.
|
|
72
|
+
"version": "19.3.47"
|
|
73
73
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-grids";
|
|
2
|
-
export declare const pkgVer = "^
|
|
2
|
+
export declare const pkgVer = "^19.3.46";
|
|
3
3
|
export declare const moduleName = "GridModule, PagerModule";
|
|
4
|
-
export declare const themeVer = "~
|
|
4
|
+
export declare const themeVer = "~19.3.46";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-grids';
|
|
4
|
-
exports.pkgVer = '^
|
|
4
|
+
exports.pkgVer = '^19.3.46';
|
|
5
5
|
exports.moduleName = 'GridModule, PagerModule';
|
|
6
|
-
exports.themeVer = '~
|
|
6
|
+
exports.themeVer = '~19.3.46';
|
package/styles/bootstrap4.css
CHANGED
|
@@ -856,6 +856,11 @@
|
|
|
856
856
|
background: transparent;
|
|
857
857
|
}
|
|
858
858
|
|
|
859
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
860
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
861
|
+
background: #e9ecef;
|
|
862
|
+
}
|
|
863
|
+
|
|
859
864
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
860
865
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
861
866
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -844,6 +844,11 @@
|
|
|
844
844
|
background: transparent;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
848
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
849
|
+
background: #343a40;
|
|
850
|
+
}
|
|
851
|
+
|
|
847
852
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
848
853
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
849
854
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -1966,14 +1971,14 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1966
1971
|
font-size: 9px;
|
|
1967
1972
|
height: 17px;
|
|
1968
1973
|
line-height: 16px;
|
|
1969
|
-
margin: 4px
|
|
1974
|
+
margin: 4px 1px 0 2px;
|
|
1970
1975
|
text-align: center;
|
|
1971
1976
|
width: 17px;
|
|
1972
1977
|
}
|
|
1973
1978
|
|
|
1974
1979
|
.e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
|
|
1975
1980
|
.e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|
|
1976
|
-
margin: -32px -20px 0
|
|
1981
|
+
margin: -32px -20px 0 -4px;
|
|
1977
1982
|
}
|
|
1978
1983
|
|
|
1979
1984
|
.e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
|
|
@@ -3210,7 +3215,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3210
3215
|
}
|
|
3211
3216
|
|
|
3212
3217
|
.e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
|
|
3213
|
-
margin: -5px;
|
|
3218
|
+
margin: -5px 15px -5px -12px;
|
|
3214
3219
|
}
|
|
3215
3220
|
|
|
3216
3221
|
.e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
|
|
@@ -3274,7 +3279,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3274
3279
|
font-size: 11px;
|
|
3275
3280
|
height: 17px;
|
|
3276
3281
|
line-height: 16px;
|
|
3277
|
-
margin: 3px
|
|
3282
|
+
margin: 3px 8px 0 8px;
|
|
3278
3283
|
text-align: center;
|
|
3279
3284
|
width: 17px;
|
|
3280
3285
|
}
|
|
@@ -3285,7 +3290,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3285
3290
|
}
|
|
3286
3291
|
|
|
3287
3292
|
.e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
|
|
3288
|
-
margin: -29px
|
|
3293
|
+
margin: -29px 29px -29px 0;
|
|
3289
3294
|
}
|
|
3290
3295
|
|
|
3291
3296
|
.e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|
package/styles/bootstrap5.css
CHANGED
|
@@ -844,6 +844,11 @@
|
|
|
844
844
|
background: transparent;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
848
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
849
|
+
background: #e9ecef;
|
|
850
|
+
}
|
|
851
|
+
|
|
847
852
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
848
853
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
849
854
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -1966,14 +1971,14 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1966
1971
|
font-size: 9px;
|
|
1967
1972
|
height: 17px;
|
|
1968
1973
|
line-height: 16px;
|
|
1969
|
-
margin: 4px
|
|
1974
|
+
margin: 4px 1px 0 2px;
|
|
1970
1975
|
text-align: center;
|
|
1971
1976
|
width: 17px;
|
|
1972
1977
|
}
|
|
1973
1978
|
|
|
1974
1979
|
.e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
|
|
1975
1980
|
.e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|
|
1976
|
-
margin: -32px -20px 0
|
|
1981
|
+
margin: -32px -20px 0 -4px;
|
|
1977
1982
|
}
|
|
1978
1983
|
|
|
1979
1984
|
.e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
|
|
@@ -3210,7 +3215,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3210
3215
|
}
|
|
3211
3216
|
|
|
3212
3217
|
.e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
|
|
3213
|
-
margin: -5px;
|
|
3218
|
+
margin: -5px 15px -5px -12px;
|
|
3214
3219
|
}
|
|
3215
3220
|
|
|
3216
3221
|
.e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
|
|
@@ -3274,7 +3279,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3274
3279
|
font-size: 11px;
|
|
3275
3280
|
height: 17px;
|
|
3276
3281
|
line-height: 16px;
|
|
3277
|
-
margin: 3px
|
|
3282
|
+
margin: 3px 8px 0 8px;
|
|
3278
3283
|
text-align: center;
|
|
3279
3284
|
width: 17px;
|
|
3280
3285
|
}
|
|
@@ -3285,7 +3290,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3285
3290
|
}
|
|
3286
3291
|
|
|
3287
3292
|
.e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
|
|
3288
|
-
margin: -29px
|
|
3293
|
+
margin: -29px 29px -29px 0;
|
|
3289
3294
|
}
|
|
3290
3295
|
|
|
3291
3296
|
.e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|
|
@@ -76,6 +76,11 @@
|
|
|
76
76
|
background: transparent;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
80
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
81
|
+
background: #e9ecef;
|
|
82
|
+
}
|
|
83
|
+
|
|
79
84
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
80
85
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
81
86
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #343a40;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #e9ecef;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -76,6 +76,11 @@
|
|
|
76
76
|
background: transparent;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
80
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
81
|
+
background: #e9ecef;
|
|
82
|
+
}
|
|
83
|
+
|
|
79
84
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
80
85
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
81
86
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #343a40;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -709,14 +714,14 @@
|
|
|
709
714
|
font-size: 9px;
|
|
710
715
|
height: 17px;
|
|
711
716
|
line-height: 16px;
|
|
712
|
-
margin: 4px
|
|
717
|
+
margin: 4px 1px 0 2px;
|
|
713
718
|
text-align: center;
|
|
714
719
|
width: 17px;
|
|
715
720
|
}
|
|
716
721
|
|
|
717
722
|
.e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
|
|
718
723
|
.e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|
|
719
|
-
margin: -32px -20px 0
|
|
724
|
+
margin: -32px -20px 0 -4px;
|
|
720
725
|
}
|
|
721
726
|
|
|
722
727
|
.e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
|
|
@@ -1953,7 +1958,7 @@
|
|
|
1953
1958
|
}
|
|
1954
1959
|
|
|
1955
1960
|
.e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
|
|
1956
|
-
margin: -5px;
|
|
1961
|
+
margin: -5px 15px -5px -12px;
|
|
1957
1962
|
}
|
|
1958
1963
|
|
|
1959
1964
|
.e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
|
|
@@ -2017,7 +2022,7 @@
|
|
|
2017
2022
|
font-size: 11px;
|
|
2018
2023
|
height: 17px;
|
|
2019
2024
|
line-height: 16px;
|
|
2020
|
-
margin: 3px
|
|
2025
|
+
margin: 3px 8px 0 8px;
|
|
2021
2026
|
text-align: center;
|
|
2022
2027
|
width: 17px;
|
|
2023
2028
|
}
|
|
@@ -2028,7 +2033,7 @@
|
|
|
2028
2033
|
}
|
|
2029
2034
|
|
|
2030
2035
|
.e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
|
|
2031
|
-
margin: -29px
|
|
2036
|
+
margin: -29px 29px -29px 0;
|
|
2032
2037
|
}
|
|
2033
2038
|
|
|
2034
2039
|
.e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|
|
@@ -64,6 +64,11 @@
|
|
|
64
64
|
background: transparent;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
68
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
69
|
+
background: #e9ecef;
|
|
70
|
+
}
|
|
71
|
+
|
|
67
72
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
68
73
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
69
74
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
@@ -709,14 +714,14 @@
|
|
|
709
714
|
font-size: 9px;
|
|
710
715
|
height: 17px;
|
|
711
716
|
line-height: 16px;
|
|
712
|
-
margin: 4px
|
|
717
|
+
margin: 4px 1px 0 2px;
|
|
713
718
|
text-align: center;
|
|
714
719
|
width: 17px;
|
|
715
720
|
}
|
|
716
721
|
|
|
717
722
|
.e-bigger .e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv,
|
|
718
723
|
.e-grid.e-bigger .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|
|
719
|
-
margin: -32px -20px 0
|
|
724
|
+
margin: -32px -20px 0 -4px;
|
|
720
725
|
}
|
|
721
726
|
|
|
722
727
|
.e-bigger .e-grid.e-rtl .e-headercell .e-sortfilterdiv,
|
|
@@ -1953,7 +1958,7 @@
|
|
|
1953
1958
|
}
|
|
1954
1959
|
|
|
1955
1960
|
.e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
|
|
1956
|
-
margin: -5px;
|
|
1961
|
+
margin: -5px 15px -5px -12px;
|
|
1957
1962
|
}
|
|
1958
1963
|
|
|
1959
1964
|
.e-grid .e-gridheader .e-sortfilter .e-headercelldiv,
|
|
@@ -2017,7 +2022,7 @@
|
|
|
2017
2022
|
font-size: 11px;
|
|
2018
2023
|
height: 17px;
|
|
2019
2024
|
line-height: 16px;
|
|
2020
|
-
margin: 3px
|
|
2025
|
+
margin: 3px 8px 0 8px;
|
|
2021
2026
|
text-align: center;
|
|
2022
2027
|
width: 17px;
|
|
2023
2028
|
}
|
|
@@ -2028,7 +2033,7 @@
|
|
|
2028
2033
|
}
|
|
2029
2034
|
|
|
2030
2035
|
.e-grid .e-gridheader .e-fltr-icon .e-sortfilterdiv {
|
|
2031
|
-
margin: -29px
|
|
2036
|
+
margin: -29px 29px -29px 0;
|
|
2032
2037
|
}
|
|
2033
2038
|
|
|
2034
2039
|
.e-grid .e-gridheader .e-rightalign.e-fltr-icon .e-sortfilterdiv {
|